Files
it_school/project2/Dockerfile
Ionel Andrei Cataon f6b3f8ad85 p2
2026-02-12 16:47:46 +02:00

12 lines
198 B
Docker

FROM python:3.9-slim
WORKDIR /app
RUN pip install --no-cache-dir requests
COPY famousquotes.py .
RUN touch quote.txt && chmod 666 quote.txt
# Comanda de rulare
CMD ["python", "famousquotes.py"]