From 2c9862734dce892df084fd94cd2d7a80b258884d Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 12 Feb 2024 15:35:04 -0800 Subject: [PATCH] Use relative path --- scripts/Dockerfile.manager | 2 +- scripts/Dockerfile.server | 2 +- scripts/Dockerfile.worker | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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