Cucumber/GreenhouseDetector/Dockerfile

11 lines
181 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 GreenhouseDetector/detector.py .
CMD ["python", "detector.py"]