feat: add dockerfile

This commit is contained in:
2025-08-06 17:31:20 +03:00
parent f42d2f887f
commit 74c4f1c1f8
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.11-slim
RUN apt-get update && apt-get install -y curl && \
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \
npm install -g sass && \
apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD flask run