Files
GCP-Dot/Dockerfile
Hexadual 8937739848
All checks were successful
Build & publish Docker images / Build & push all images (push) Successful in 2s
lates versions
2026-04-30 20:36:22 -05:00

13 lines
171 B
Docker

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