Jason White
Results
2
comments of
Jason White
I have a branch where I have added development/flask dirs under the docker folder. Here I have set up a docker-compose.yml etc. that will serve the flask app running in...
I solved this by adding WORKDIR to the web Dockerfile: ``` bash FROM python:3.7-slim RUN python -m pip install --upgrade pip WORKDIR /usr/src/app COPY requirements.txt requirements.txt RUN python -m pip...