Spaces:
Running
Running
debug
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -4,10 +4,11 @@ WORKDIR /app
|
|
4 |
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
|
7 |
-
RUN echo $GITHUB_TOKEN
|
8 |
-
|
9 |
RUN if [ -z "$GITHUB_TOKEN" ]; then echo "GITHUB_TOKEN is not set"; exit 1; fi && \
|
10 |
sed -i "s/{GITHUB_TOKEN}/$GITHUB_TOKEN/g" /app/requirements.txt
|
|
|
|
|
|
|
11 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
12 |
|
13 |
# User
|
|
|
4 |
|
5 |
COPY ./requirements.txt /app/requirements.txt
|
6 |
|
|
|
|
|
7 |
RUN if [ -z "$GITHUB_TOKEN" ]; then echo "GITHUB_TOKEN is not set"; exit 1; fi && \
|
8 |
sed -i "s/{GITHUB_TOKEN}/$GITHUB_TOKEN/g" /app/requirements.txt
|
9 |
+
|
10 |
+
RUN cat /app/requirements.txt
|
11 |
+
|
12 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
13 |
|
14 |
# User
|