2024-06-27 18:04:10 +00:00
|
|
|
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-27 18:04:10 +00:00
|
|
|
|
2024-06-28 13:43:49 +00:00
|
|
|
CMD [ "python", "./app.py" ]
|