diff --git a/scripts/Dockerfile.manager b/scripts/Dockerfile.manager index 585d88e899..15d24db119 100644 --- a/scripts/Dockerfile.manager +++ b/scripts/Dockerfile.manager @@ -10,7 +10,7 @@ WORKDIR /app RUN git init # Configure git to use the token RUN git config --global url."https://${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/" -RUN git submodule add -b ${SUBMODULE_BRANCH} https://${GITHUB_TOKEN}@github.com/oneirocom/portal.git portal/cloud +RUN git submodule add -b ${SUBMODULE_BRANCH} https://${GITHUB_TOKEN}@github.com/oneirocom/portal.git ./portal/cloud # Clone the submodule diff --git a/scripts/Dockerfile.server b/scripts/Dockerfile.server index 32d62d4b2b..5f61e22a6a 100644 --- a/scripts/Dockerfile.server +++ b/scripts/Dockerfile.server @@ -10,7 +10,7 @@ WORKDIR /app RUN git init # Configure git to use the token RUN git config --global url."https://${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/" -RUN git submodule add -b ${SUBMODULE_BRANCH} https://${GITHUB_TOKEN}@github.com/oneirocom/portal.git portal/cloud +RUN git submodule add -b ${SUBMODULE_BRANCH} https://${GITHUB_TOKEN}@github.com/oneirocom/portal.git ./portal/cloud # Clone the submodule diff --git a/scripts/Dockerfile.worker b/scripts/Dockerfile.worker index e8ba5341ee..9d5fd9446e 100644 --- a/scripts/Dockerfile.worker +++ b/scripts/Dockerfile.worker @@ -12,7 +12,7 @@ RUN git init # Configure git to use the token RUN git config --global url."https://${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/" -RUN git submodule add -b ${SUBMODULE_BRANCH} https://${GITHUB_TOKEN}@github.com/oneirocom/portal.git portal/cloud +RUN git submodule add -b ${SUBMODULE_BRANCH} https://${GITHUB_TOKEN}@github.com/oneirocom/portal.git ./portal/cloud # Clone the submodule RUN git submodule update --init --recursive