Skip to content

Commit ed16230

Browse files
authored
Merge pull request #82 from a5chin/feature/debian
Fix Debian Version
2 parents 2ca1ef2 + f070fa7 commit ed16230

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
ARG UV_VERSION=latest
2-
ARG DEBIAN_VERSION=bookworm
32

43

54
FROM ghcr.io/astral-sh/uv:$UV_VERSION AS uv
65

76

8-
FROM mcr.microsoft.com/vscode/devcontainers/base:$DEBIAN_VERSION
7+
FROM mcr.microsoft.com/vscode/devcontainers/base:debian
98
LABEL maintainer="a5chin <[email protected]>"
109

1110
# hadolint ignore=DL3008

.devcontainer/devcontainer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"context": "..",
55
"dockerfile": "Dockerfile",
66
"args": {
7-
"UV_VERSION": "latest",
8-
"DEBIAN_VERSION": "bookworm"
7+
"UV_VERSION": "latest"
98
}
109
},
1110
"features": {

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
ARG DEBIAN_VERSION=bookworm
21
ARG UV_VERSION=latest
32
ARG VARIANT=3.13
43

54

65
FROM ghcr.io/astral-sh/uv:$UV_VERSION AS uv
76

87

9-
FROM python:$VARIANT-slim-$DEBIAN_VERSION
8+
FROM python:$VARIANT-slim
109
LABEL maintainer="a5chin <[email protected]>"
1110

1211
WORKDIR /app

0 commit comments

Comments
 (0)