euler314 commited on
Commit
a24960d
·
verified ·
1 Parent(s): 7cf4e47

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -4,8 +4,9 @@ WORKDIR /code
4
 
5
  COPY requirements.txt /code/requirements.txt
6
  COPY app.py /code/app.py
7
- COPY client_secret.json /code/client_secret.json
8
 
9
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10
 
 
 
11
  CMD ["python", "app.py"]
 
4
 
5
  COPY requirements.txt /code/requirements.txt
6
  COPY app.py /code/app.py
 
7
 
8
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
9
 
10
+ ENV OAUTHLIB_INSECURE_TRANSPORT=1
11
+
12
  CMD ["python", "app.py"]