these-3-words/Dockerfile

13 lines
227 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
2024-06-28 13:43:49 +00:00
COPY ./views/ ./views/
COPY ./static/ ./static/
COPY ./words/ ./words/
COPY *.py ./
2024-06-28 13:43:49 +00:00
CMD [ "python", "./app.py" ]