File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,18 @@ ARG NODE_VERSION="none"
7
7
RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1" ; fi
8
8
9
9
RUN export DEBIAN_FRONTEND=noninteractive \
10
- && curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg \
10
+ && curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg \
11
11
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor > /usr/share/keyrings/yarn-archive-keyring.gpg \
12
12
&& apt-get install apt-transport-https --yes \
13
- && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list \
14
- && apt-get update \
15
- && apt-get -y install --no-install-recommends \
13
+ && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list \
14
+ && apt-get update && apt-get install --yes --no-install-recommends \
16
15
bash-completion \
17
16
helm \
18
17
uuid-runtime
19
18
20
19
# Install cockroachdb so we have the client
21
20
RUN curl https://binaries.cockroachdb.com/cockroach-v22.1.8.linux-amd64.tgz | tar -xz \
22
- && sudo cp -i cockroach-v22.1.8.linux-amd64/cockroach /usr/local/bin/ \
21
+ && cp -i cockroach-v22.1.8.linux-amd64/cockroach /usr/local/bin/ \
23
22
&& rm -rf cockroach-v*
24
23
25
24
USER vscode
You can’t perform that action at this time.
0 commit comments