Correctly copy directories
This commit is contained in:
parent
829880a51f
commit
5e9d84fa94
11
Dockerfile
11
Dockerfile
|
@ -5,10 +5,9 @@ WORKDIR /usr/src/app
|
||||||
COPY requirements.txt ./
|
COPY requirements.txt ./
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
COPY views ./
|
COPY ./views/ ./views/
|
||||||
COPY static ./
|
COPY ./static/ ./static/
|
||||||
COPY words ./
|
COPY ./words/ ./words/
|
||||||
COPY app.py ./
|
COPY *.py ./
|
||||||
COPY thesethreewords.py ./
|
|
||||||
|
|
||||||
CMD [ "ls", "-lh", "." ]
|
CMD [ "python", "./app.py" ]
|
Loading…
Reference in New Issue