Skip to content

Commit 195bd29

Browse files
pamelafoxchuwik
authored andcommitted
Use Python 3.0 base image
1 parent 6ea87ad commit 195bd29

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG VARIANT=bullseye
2-
FROM --platform=amd64 mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
1+
ARG IMAGE=bullseye
2+
FROM --platform=amd64 mcr.microsoft.com/devcontainers/${IMAGE}
33
RUN export DEBIAN_FRONTEND=noninteractive \
44
&& apt-get update && apt-get install -y xdg-utils \
55
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*

.devcontainer/devcontainer.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
"build": {
44
"dockerfile": "Dockerfile",
55
"args": {
6-
"VARIANT": "bullseye"
6+
"IMAGE": "python:3.10"
77
}
88
},
99
"features": {
10-
"ghcr.io/devcontainers/features/python:1": {
11-
"version": "os-provided"
12-
},
1310
"ghcr.io/devcontainers/features/node:1": {
1411
"version": "16",
1512
"nodeGypDependencies": false

0 commit comments

Comments
 (0)