DAS_2024_1/mochalov_danila_lab_3/service_service/Dockerfile

11 lines
190 B
Docker
Raw Permalink Normal View History

2024-10-26 18:18:28 +04:00
FROM python:latest
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY service_service/service_service.py .
CMD ["python", "service_service.py"]