Skip to content

Commit

Permalink
Update rust Docker tag to v1.83.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 3, 2024
1 parent ebe014c commit 8b0feee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/abacus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.82.0 AS builder
FROM rust:1.83.0 AS builder
# Let's switch our working directory to `app` (equivalent to `cd app`)
# The `app` folder will be created for us by Docker in case it does not
# exist already.
Expand All @@ -9,7 +9,7 @@ COPY . .
RUN cargo build --release --bin=server


FROM rust:1.82.0 AS runtime
FROM rust:1.83.0 AS runtime
WORKDIR app
# Copy the compiled binary from the builder environment
# to our runtime environment
Expand Down

0 comments on commit 8b0feee

Please sign in to comment.