Files
app1/operator/Dockerfile
MTimka b5da74f12b
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 2m17s
testing workflows
2026-05-13 13:49:09 -07:00

8 lines
160 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY operator.py .
CMD ["python", "operator.py"]