Files
2024-03-18 18:53:38 +02:00

15 lines
224 B
Docker
Executable File

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"]