Files
OutFleet/Dockerfile_amd64
2023-09-26 00:55:02 +03:00

15 lines
224 B
Plaintext

FROM python:3-alpine
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
EXPOSE 5000
CMD ["python", "main.py"]