12 lines
198 B
Docker
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"] |