these-3-words/Dockerfile

14 lines
228 B
Docker
Raw Normal View History

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY views ./
COPY static ./
2024-06-28 13:38:28 +00:00
COPY words ./
COPY app.py ./
2024-06-28 13:31:01 +00:00
COPY thesethreewords.py ./
CMD [ "python", "./app.py" ]