From f814a1ba00645161b709a596c9af7a4e6493cdc4 Mon Sep 17 00:00:00 2001 From: n0one Date: Mon, 15 Sep 2025 15:22:41 +0300 Subject: [PATCH] Update dockerfile --- dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dockerfile b/dockerfile index d18ce2b..a0196f6 100644 --- a/dockerfile +++ b/dockerfile @@ -1,11 +1,13 @@ -FROM python:3.13-slim +FROM pythoFROM python:3.13-slim WORKDIR /app -COPY . . - RUN apt-get update && apt-get install -y --no-install-recommends libpq-dev build-essential +COPY requirements.txt ./ + RUN pip install --no-cache-dir -r requirements.txt +COPY . . + CMD ["python", "src/main.py"]