From 536d022e8a55f6e53f01dfb7e0fae2ef24385aad Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Sun, 22 Mar 2026 19:56:47 +0300 Subject: Init project --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0a9a6fd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:latest + +WORKDIR /app +COPY requirements.txt . +RUN pip install pip -U +RUN pip install -r requirements.txt + +COPY . . + +RUN alembic upgrade head +CMD ["python", "main.py"] -- cgit v1.3