Skip to content

Commit 8bc5958

Browse files
committed
1 parent 13e9750 commit 8bc5958

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ARG BASE_IMAGE=temurin-21-tools-deps-jammy
22
FROM clojure:${BASE_IMAGE}
33

4-
ARG USERNAME=vscode
4+
ENV USERNAME=vscode
55
ARG USER_UID=1000
66
ARG USER_GID=$USER_UID
77

88
# Create the user
99
RUN groupadd --gid $USER_GID $USERNAME \
10-
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME \
10+
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME -s /bin/bash \
1111
#
1212
# [Optional] Add sudo support. Omit if you don't need to install software after connecting.
1313
&& apt-get update \

0 commit comments

Comments
 (0)