Skip to content

Commit d1cd846

Browse files
committed
use main branch from monorepo
1 parent ce905a2 commit d1cd846

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

deps/bootstrapper/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ RUN npm install -g --unsafe-perm [email protected]
127127

128128
WORKDIR /app
129129

130-
ENV BOOTSTRAPPER_VER="a99088a96a8126d33fef4fabba76a70032e601cf"
131-
RUN echo Cloning Bootstrapper at commit ${BOOTSTRAPPER_VER}}
130+
ENV BOOTSTRAPPER_VER="main"
131+
RUN echo Cloning Bootstrapper at branch ${BOOTSTRAPPER_VER}
132132
RUN git clone https://github.com/madara-alliance/madara . && \
133133
git checkout ${BOOTSTRAPPER_VER} && \
134134
git submodule update --init --recursive

deps/madara/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ RUN apt-get -y update && \
1010
# Set the working directory
1111
WORKDIR /usr/src/madara/
1212

13-
ENV MADARA_VER="a99088a96a8126d33fef4fabba76a70032e601cf"
14-
RUN echo Cloning Madara at commit ${MADARA_VER}
13+
ENV MADARA_VER="main"
14+
RUN echo Cloning Madara at branch ${MADARA_VER}
1515
RUN git clone https://github.com/madara-alliance/madara . && \
1616
git checkout ${MADARA_VER} && \
1717
git submodule update --init --recursive

deps/orchestrator/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ RUN apt update && apt install -y \
1313
# Set the working directory
1414
WORKDIR /usr/src/madara/
1515

16-
# Clone the repository
17-
ENV ORCHESTRATOR_VER="a99088a96a8126d33fef4fabba76a70032e601cf"
18-
RUN echo Cloning Orchestrator at commit ${ORCHESTRATOR_VER}
16+
ENV ORCHESTRATOR_VER="main"
17+
RUN echo Cloning Orchestrator at branch ${ORCHESTRATOR_VER}
1918
RUN git clone https://github.com/madara-alliance/madara . && \
2019
git checkout ${ORCHESTRATOR_VER} && \
2120
git submodule update --init --recursive

0 commit comments

Comments
 (0)