Spaces:
Running
Running
debug
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -4,6 +4,8 @@ WORKDIR /app
|
|
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 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
|
|
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
|