Cucumber/GreenhouseManager/Dockerfile

11 lines
178 B
Docker
Raw Normal View History

FROM python:3.9-slim
2024-12-04 21:33:02 +04:00
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY GreenhouseManager/manager.py .
CMD ["python", "manager.py"]