Files
2025-03-04 10:09:53 +03:00

6 lines
85 B
Docker

FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install flask
CMD ["python", "app.py"]