11 lines
233 B
Docker
11 lines
233 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY scripts/requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir -r /app/requirements.txt
|
|
|
|
COPY scripts /app/scripts
|
|
|
|
ENTRYPOINT ["python", "/app/scripts/run_rain_ml_worker.py"]
|