Skip to content

Commit

Permalink
Dockerfile: update to latest rust
Browse files Browse the repository at this point in the history
  • Loading branch information
lpenz committed Nov 9, 2024
1 parent ba78430 commit 62c37e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is subject to the terms and conditions defined in
# file 'LICENSE', which is part of this source code package.

FROM rust:1.76-slim-bookworm AS build
FROM docker.io/rust:1.82-slim-bookworm AS build
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /src
COPY Cargo.* ./
Expand All @@ -13,7 +13,7 @@ RUN set -e -x; \
apt-get install -y --no-install-recommends libssl-dev pkg-config; \
cargo build --release

FROM debian:bookworm-slim
FROM docker.io/debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN set -e -x; \
apt-get update; \
Expand Down

0 comments on commit 62c37e3

Please sign in to comment.