test1/dockerfile

7 lines
139 B
Plaintext
Raw Permalink Normal View History

2025-05-21 21:15:44 +03:00
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["python", "app.py"]