You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .devcontainer/Dockerfile
+7-19Lines changed: 7 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -1,32 +1,20 @@
1
-
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/rust/.devcontainer/base.Dockerfile
1
+
# See here for image contents: https://hub.docker.com/layers/library/rust/1.81.0-slim/images/sha256-ba4ee661bb466ab49f6ceb8c6d9e9f9784bba7c6e45225187cd3c7fb1fbc12ce
2
2
3
-
# [Choice] Debian OS version (use bookworm on local arm64/Apple Silicon): buster, bullseye, bookworm
4
-
5
-
ARG VARIANT
6
-
FROM mcr.microsoft.com/vscode/devcontainers/rust:${VARIANT}
7
-
ARG VARIANT
3
+
ARG RUST_VERSION=1.81.0
4
+
FROM rust:${RUST_VERSION}-slim
5
+
ARG RUST_VERSION
8
6
9
7
# Install additional packages
10
8
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
0 commit comments