Skip to content

Commit

Permalink
Update rust Docker tag to v1.72.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and mrtnzlml committed Sep 20, 2023
1 parent cfef660 commit a647dc9
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.72.0 AS builder
FROM rust:1.72.1 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.72.0 AS runtime
FROM rust:1.72.1 AS runtime
WORKDIR app
# Copy the compiled binary from the builder environment
# to our runtime environment
Expand Down

0 comments on commit a647dc9

Please sign in to comment.