thejagstudio commited on
Commit
e680339
·
verified ·
1 Parent(s): b181fd4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,7 +3,7 @@ RUN apt-get update
3
  RUN apt-get install -y python3-pip
4
  WORKDIR /code
5
  COPY ./requirements.txt /code/requirements.txt
6
- RUN python3 -m pip install -r /code/requirements.txt
7
  COPY . .
8
  EXPOSE 7860
9
  CMD ["python","./manage.py","runserver","0.0.0.0:7860"]
 
3
  RUN apt-get install -y python3-pip
4
  WORKDIR /code
5
  COPY ./requirements.txt /code/requirements.txt
6
+ RUN pip3 install -r /code/requirements.txt
7
  COPY . .
8
  EXPOSE 7860
9
  CMD ["python","./manage.py","runserver","0.0.0.0:7860"]