DAS_2024_1/kosheev_maksim_lab_3/books_service/Dockerfile

8 lines
159 B
Docker
Raw Normal View History

2024-11-21 04:43:58 +04:00
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]