We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdfbc7a commit 3b8b3a4Copy full SHA for 3b8b3a4
1 file changed
.devcontainer/Dockerfile
@@ -1,2 +1,8 @@
1
-# [Choice] Python version: 3.9, 3.10, 3.11
2
-FROM python:latest
+# [Choice] Node.js version: 14, 16, 17
+FROM node:latest
3
+
4
+# Install Python
5
+ARG PYTHON_VERSION="3.10"
6
+RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
7
+ && apt-get -y install --no-install-recommends python${PYTHON_VERSION} python3-pip python3-venv \
8
+ && apt-get clean -y && rm -rf /var/lib/apt/lists/*
0 commit comments