Skip to content

Commit

Permalink
fix(docker): toolchain issue
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat616 committed Sep 16, 2023
1 parent 1f619a9 commit 729f660
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM messense/rust-musl-cross:aarch64-musl
RUN rustup update nightly \
RUN rustup update nightly && \
rustup target add --toolchain nightly aarch64-unknown-linux-musl
CMD ["/bin/bash"]
WORKDIR /home/rust/src
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM messense/rust-musl-cross:x86_64-musl
RUN rustup update nightly \
RUN rustup update nightly && \
rustup target add --toolchain nightly x86_64-unknown-linux-musl
CMD ["/bin/bash"]
WORKDIR /home/rust/src
2 changes: 1 addition & 1 deletion manifest/docker/release/aarch64-linux-musl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM messense/rust-musl-cross:aarch64-musl as builder
RUN rustup update nightly \
RUN rustup update nightly && \
rustup target add --toolchain nightly aarch64-unknown-linux-musl
WORKDIR /app
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion manifest/docker/release/x86_64-linux-musl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM messense/rust-musl-cross:x86_64-musl as builder
RUN rustup update nightly \
RUN rustup update nightly && \
rustup target add --toolchain nightly x86_64-unknown-linux-musl
WORKDIR /app
COPY . .
Expand Down

0 comments on commit 729f660

Please sign in to comment.