Files
GCP-Dot/Dockerfile
Hexadual 18a8051600
All checks were successful
Build & publish Docker images / Build & push all images (push) Successful in 2s
initial commit
2026-04-30 21:11:07 -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"]