Skip to content

Commit 54dd3ac

Browse files
committed
updated Dockerfile with current debian stable (bullseye)
1 parent 8f00c92 commit 54dd3ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:jessie-slim
1+
FROM debian:bullseye-slim
22
ARG rust_version
33
ENV RUST_VERSION ${rust_version}
44
ENV RUST_ARCH unknown-linux-gnu
@@ -9,8 +9,9 @@ LABEL maintainer "Marc Carre <[email protected]>"
99
RUN apt-get update && apt-get install -y \
1010
curl \
1111
gcc \
12+
gpg \
1213
inotify-tools && \
13-
gpg --keyserver pgp.mit.edu --recv-key 85AB96E6FA1BE5FE && \
14+
gpg --keyserver keyserver.ubuntu.com --recv-key 85AB96E6FA1BE5FE && \
1415
curl -fsSO https://static.rust-lang.org/dist/rust-"$RUST_VERSION"-"$RUST_CPU"-"$RUST_ARCH".tar.gz.asc && \
1516
curl -fsSO https://static.rust-lang.org/dist/rust-"$RUST_VERSION"-"$RUST_CPU"-"$RUST_ARCH".tar.gz && \
1617
gpg --verify rust-"$RUST_VERSION"-"$RUST_CPU"-"$RUST_ARCH".tar.gz.asc && \

0 commit comments

Comments
 (0)