DAS_2024_1/minhasapov_ruslan_lab_3/club_service/Dockerfile
2024-11-17 08:07:00 +04:00

11 lines
181 B
Docker

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