Files
OutFleet/Dockerfile_amd64

15 lines
224 B
Plaintext
Raw Normal View History

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
COPY main.py .
COPY lib.py .
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"]