DAS_2024_1/minhasapov_ruslan_lab_3/resource_service/Dockerfile

11 lines
193 B
Docker
Raw Normal View History

2024-11-17 08:07:00 +04:00
FROM python:latest
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY resource_service/resource_service.py .
CMD ["python", "resource_service.py"]