Spaces:
Running
Running
Update Dockerfile
Browse files- 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"]
|