From 8c754488369f66eada6c5fec221c9d8555aa2c73 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Wed, 6 Aug 2025 17:31:20 +0300 Subject: [PATCH] feat: add dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b3c8b95 --- /dev/null +++ b/Dockerfile @@ -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