Correctly copy directories

This commit is contained in:
mmcwilliams 2024-06-28 09:43:49 -04:00
parent 829880a51f
commit 5e9d84fa94
1 changed files with 5 additions and 6 deletions

View File

@ -5,10 +5,9 @@ WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY views ./
COPY static ./
COPY words ./
COPY app.py ./
COPY thesethreewords.py ./
COPY ./views/ ./views/
COPY ./static/ ./static/
COPY ./words/ ./words/
COPY *.py ./
CMD [ "ls", "-lh", "." ]
CMD [ "python", "./app.py" ]