dwsfi/Dockerfile
2024-05-25 20:14:56 -04:00

12 lines
189 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY templates templates
COPY main.py main.py
CMD [ "python", "main.py" ]