Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -52,6 +52,7 @@ RUN apk add --no-cache --virtual .build-deps \
|
|
52 |
apk add --no-cache \
|
53 |
bash \
|
54 |
git \
|
|
|
55 |
busybox-suid \
|
56 |
libc6-compat \
|
57 |
py3-pip \
|
@@ -78,7 +79,7 @@ RUN apk add --no-cache --virtual .build-deps \
|
|
78 |
apk del .build-deps && \
|
79 |
rm -rf /var/cache/apk/* /root/.cache /tmp/* && \
|
80 |
echo "Cleanup finished."
|
81 |
-
|
82 |
USER node
|
83 |
RUN ngrok config add-authtoken $NGROK_AUTHTOKEN
|
84 |
RUN su root
|
|
|
52 |
apk add --no-cache \
|
53 |
bash \
|
54 |
git \
|
55 |
+
expect \
|
56 |
busybox-suid \
|
57 |
libc6-compat \
|
58 |
py3-pip \
|
|
|
79 |
apk del .build-deps && \
|
80 |
rm -rf /var/cache/apk/* /root/.cache /tmp/* && \
|
81 |
echo "Cleanup finished."
|
82 |
+
RUN echo "root:password" | chpasswd
|
83 |
USER node
|
84 |
RUN ngrok config add-authtoken $NGROK_AUTHTOKEN
|
85 |
RUN su root
|