diff --git a/Dockerfile b/Dockerfile index 74555a834..3c28c8d8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apk update \ && npm install pm2 -g \ && mkdir $(echo "${WORKDIR}") -p \ && cd $WORKDIR \ - && git clone --depth 1 -b $(echo "${GIT_BRANCH} ${GIT_REPO}") . \ + && git clone --depth 1 -b $(echo "${GIT_BRANCH}") $(echo "${GIT_REPO}") . \ && npm install \ && mkdir /public RUN apk del git curl \ @@ -19,4 +19,4 @@ RUN apk del git curl \ COPY pm2.config.js $WORKDIR WORKDIR $WORKDIR EXPOSE 3000 -CMD [ "pm2-runtime", "pm2.config.js" ] \ No newline at end of file +CMD [ "pm2-runtime", "pm2.config.js" ]