Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
FROM node:16-alpine
|
2 |
ENV PORT 7860
|
3 |
-
RUN apk update && apk upgrade && apk add git wget
|
4 |
RUN chmod -R u+rwx,g+rwx,o+rwx /tmp
|
5 |
ENV localrepoPath /tmp/okok
|
6 |
|
7 |
COPY <<EOF /start.sh
|
|
|
8 |
retry=true
|
9 |
echo hello!
|
10 |
while $retry; do
|
|
|
1 |
FROM node:16-alpine
|
2 |
ENV PORT 7860
|
3 |
+
RUN apk update && apk upgrade && apk add git wget bash
|
4 |
RUN chmod -R u+rwx,g+rwx,o+rwx /tmp
|
5 |
ENV localrepoPath /tmp/okok
|
6 |
|
7 |
COPY <<EOF /start.sh
|
8 |
+
#!/bin/bash
|
9 |
retry=true
|
10 |
echo hello!
|
11 |
while $retry; do
|