Files
2024-02-17 11:19:10 +01:00

11 lines
158 B
Docker

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