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 13e9750 commit 8bc5958Copy full SHA for 8bc5958
.devcontainer/Dockerfile
@@ -1,13 +1,13 @@
1
ARG BASE_IMAGE=temurin-21-tools-deps-jammy
2
FROM clojure:${BASE_IMAGE}
3
4
-ARG USERNAME=vscode
+ENV USERNAME=vscode
5
ARG USER_UID=1000
6
ARG USER_GID=$USER_UID
7
8
# Create the user
9
RUN groupadd --gid $USER_GID $USERNAME \
10
- && useradd --uid $USER_UID --gid $USER_GID -m $USERNAME \
+ && useradd --uid $USER_UID --gid $USER_GID -m $USERNAME -s /bin/bash \
11
#
12
# [Optional] Add sudo support. Omit if you don't need to install software after connecting.
13
&& apt-get update \
0 commit comments