File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,16 @@ RUN apt-get update \
43
43
# Install Node 14.16 (latest LTS)
44
44
&& nvm install v14.16.1 \
45
45
#
46
+ # Install Typescript Globally
47
+ && npm install -g typescript \
48
+ #
46
49
# Install Dapr CLI
47
50
&& wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash \
51
+ #
48
52
# Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
49
53
&& groupadd --gid $USER_GID $USERNAME \
50
54
&& useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \
55
+ #
51
56
# [Optional] Add sudo support for the non-root user
52
57
&& apt-get install -y sudo \
53
58
&& echo $USERNAME ALL=\( root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME\
You can’t perform that action at this time.
0 commit comments