Skip to content

Commit 1f2675a

Browse files
committed
Fix Dockerfile: use main branch instead of non-existent tag
The mainnet-v1.40.1 tag doesn't exist in Sui repo. Using main branch which is stable and contains the Move compiler we need.
1 parent 613058b commit 1f2675a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ WORKDIR /api/move_parser_wrapper
3131
COPY move_parser_wrapper .
3232

3333
# Clone Sui Move compiler (vendored dependency for building)
34-
RUN git clone --depth 1 --branch mainnet-v1.40.1 https://github.com/MystenLabs/sui.git /tmp/sui \
34+
RUN git clone --depth 1 https://github.com/MystenLabs/sui.git /tmp/sui \
3535
&& mv /tmp/sui/external-crates/move /api/move-vendored \
3636
&& rm -rf /tmp/sui
3737

0 commit comments

Comments
 (0)