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
|
|
|
|
|
|
|
|
COPY views ./
|
|
|
|
COPY static ./
|
2024-06-28 13:38:28 +00:00
|
|
|
COPY words ./
|
2024-06-27 18:04:10 +00:00
|
|
|
COPY app.py ./
|
2024-06-28 13:31:01 +00:00
|
|
|
COPY thesethreewords.py ./
|
2024-06-27 18:04:10 +00:00
|
|
|
|
|
|
|
CMD [ "python", "./app.py" ]
|