From 262fe714d3866eb6b9f019c36074cceab9cfe739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 11 Apr 2026 14:22:28 +0200 Subject: [PATCH] Fix git clone command --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" ]