2023-09-26 00:55:02 +03:00
|
|
|
FROM python:3-alpine
|
2023-09-25 23:48:25 +03:00
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
COPY static static
|
|
|
|
|
COPY templates templates
|
2024-03-18 19:20:08 +02:00
|
|
|
COPY *.py .
|
2023-09-25 23:48:25 +03:00
|
|
|
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
2023-09-26 00:55:02 +03:00
|
|
|
EXPOSE 5000
|
2023-09-25 23:48:25 +03:00
|
|
|
CMD ["python", "main.py"]
|