Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -3,6 +3,8 @@ ENV PORT 7860
|
|
3 |
RUN apk update && apk upgrade && apk add git
|
4 |
RUN chmod -R u+rwx,g+rwx,o+rwx /tmp
|
5 |
CMD export localrepoPath=/tmp/okok &&\
|
|
|
|
|
6 |
git clone $remoteUrlWithToken $localrepoPath &&\
|
7 |
cd $localrepoPath &&\
|
8 |
npm install &&\
|
|
|
3 |
RUN apk update && apk upgrade && apk add git
|
4 |
RUN chmod -R u+rwx,g+rwx,o+rwx /tmp
|
5 |
CMD export localrepoPath=/tmp/okok &&\
|
6 |
+
git clone https://github.com/edwagbb/GitPipeLocal.git /tmp/gitpipelocal &&\
|
7 |
+
cd /tmp/gitpipelocal && npm install && node index.js &\
|
8 |
git clone $remoteUrlWithToken $localrepoPath &&\
|
9 |
cd $localrepoPath &&\
|
10 |
npm install &&\
|