Spaces:
Sleeping
Sleeping
edited acess token
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -6,7 +6,8 @@ WORKDIR /code
|
|
6 |
|
7 |
# Copy the current directory contents into the container at /code
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
-
|
|
|
10 |
|
11 |
# Install requirements.txt
|
12 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
6 |
|
7 |
# Copy the current directory contents into the container at /code
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
+
|
10 |
+
RUN printf "$(cat /run/secrets/access_token)" > secret.txt
|
11 |
|
12 |
# Install requirements.txt
|
13 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|