We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df8531e commit 6525e7dCopy full SHA for 6525e7d
2 files changed
.devcontainer/Dockerfile
@@ -1,6 +1,8 @@
1
ARG JAVA_VERSION=8
2
FROM eclipse-temurin:${JAVA_VERSION}-jdk-jammy
3
4
-RUN apt-get update \
+RUN groupadd --gid 1000 vscode \
5
+ && useradd --uid 1000 --gid 1000 --create-home --shell /bin/bash vscode \
6
+ && apt-get update \
7
&& apt-get install -y --no-install-recommends curl git openssh-client \
8
&& rm -rf /var/lib/apt/lists/*
.github/workflows/codeql.yml
0 commit comments