This repository was archived by the owner on Nov 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
docker-compose/.devcontainer Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
4
4
# -------------------------------------------------------------------------------------------------------------
5
5
6
- # ********************************************************
7
- # * Note: A Docker is optional when using Docker Compose *
8
- # * but has been included here for completeness. *
9
- # ********************************************************
6
+ # **********************************************************
7
+ # * Note: Using a Dockerfile is optional when using Docker *
8
+ # * Compose but has been included here for completeness. *
9
+ # **********************************************************
10
10
11
11
FROM debian:9
12
12
@@ -32,7 +32,7 @@ RUN apt-get update \
32
32
# * Add steps for installing needed dependencies here *
33
33
# *****************************************************
34
34
#
35
- # Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
35
+ # Create a non-root user
36
36
&& groupadd --gid $USER_GID $USERNAME \
37
37
&& useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \
38
38
# [Optional] Add sudo support for the non-root user
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ RUN apt-get update \
27
27
# * Add steps for installing needed dependencies here *
28
28
# *****************************************************
29
29
#
30
- # Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
30
+ # Create a non-root user
31
31
&& groupadd --gid $USER_GID $USERNAME \
32
32
&& useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \
33
33
# [Optional] Add sudo support for the non-root user
You can’t perform that action at this time.
0 commit comments