Skip to content

Commit

Permalink
Update rust Docker tag to v1.81.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and mrtnzlml committed Sep 6, 2024
1 parent 0c27bcb commit 0a2ec81
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.80.1 AS builder
FROM rust:1.81.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.80.1 AS runtime
FROM rust:1.81.0 AS runtime
WORKDIR app
# Copy the compiled binary from the builder environment
# to our runtime environment
Expand Down

0 comments on commit 0a2ec81

Please sign in to comment.