Skip to content

Commit d798191

Browse files
committed
feat(docker): update base image to python 3.11
make python version a build arg
1 parent 6321314 commit d798191

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM python:3.10
1+
ARG PYTHON_VERSION=3.11
2+
3+
FROM python:${PYTHON_VERSION}
24

35
ENV PYTHONDONTWRITEBYTECODE=1 \
46
PYTHONUNBUFFERED=1 \

0 commit comments

Comments
 (0)