Skip to content

Commit

Permalink
build(deps): bump rust from 1.81 to 1.82
Browse files Browse the repository at this point in the history
Bumps rust from 1.81 to 1.82.

---
updated-dependencies:
- dependency-name: rust
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 18, 2024
1 parent e205760 commit 048c3db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG LAZYMC_VERSION=0.2.11
ARG LAZYMC_LEGACY_VERSION=0.2.10

# build lazymc
FROM rust:1.81 as lazymc-builder
FROM rust:1.82 as lazymc-builder
RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-tools musl-dev
RUN update-ca-certificates
Expand All @@ -15,7 +15,7 @@ RUN git clone --branch v$LAZYMC_VERSION https://github.com/timvisee/lazymc .
RUN cargo build --target x86_64-unknown-linux-musl --release --locked

# build lazymc-legacy
FROM rust:1.81 as lazymc-legacy-builder
FROM rust:1.82 as lazymc-legacy-builder
RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-tools musl-dev
RUN update-ca-certificates
Expand All @@ -27,7 +27,7 @@ RUN git clone --branch v$LAZYMC_LEGACY_VERSION https://github.com/timvisee/lazym
RUN cargo build --target x86_64-unknown-linux-musl --release --locked

# build this app
FROM rust:1.81 as app-builder
FROM rust:1.82 as app-builder
RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-tools musl-dev
RUN update-ca-certificates
Expand Down

0 comments on commit 048c3db

Please sign in to comment.