Skip to content

Commit

Permalink
Use relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
parzival418 committed Feb 12, 2024
1 parent 514e40e commit 2c98627
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/Dockerfile.manager
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2c98627

Please sign in to comment.