Files
it_school/project2/Dockerfile
Ionel Andrei Cataon dbdcb575df p2
2026-02-12 17:07:52 +02:00

11 lines
178 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
CMD ["python", "famousquotes.py"]