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"]