TechDev commited on
Commit
b3a5197
verified
1 Parent(s): 73366ba

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -16,7 +16,7 @@ USER appuser
16
  WORKDIR /app
17
  RUN wget -O code.zip "https://drive.google.com/uc?export=download&id=$DRIVE_CODE"
18
  RUN sudo chmod -R 777 /app
19
- RUN unzip code.zip ./
20
  RUN python3 -m venv venv
21
  RUN /bin/bash -c "source venv/bin/activate && pip3 install -r requirements.txt"
22
  CMD [ "venv/bin/python","server.py"]
 
16
  WORKDIR /app
17
  RUN wget -O code.zip "https://drive.google.com/uc?export=download&id=$DRIVE_CODE"
18
  RUN sudo chmod -R 777 /app
19
+ RUN unzip code.zip -d .
20
  RUN python3 -m venv venv
21
  RUN /bin/bash -c "source venv/bin/activate && pip3 install -r requirements.txt"
22
  CMD [ "venv/bin/python","server.py"]