Skip to content

Commit 9c2d90d

Browse files
committed
Fix warnings
1 parent 5a25bb3 commit 9c2d90d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.devcontainer/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/
88

99
# [Optional] Uncomment this section to install additional OS packages.
1010
RUN apt-get update -q && export DEBIAN_FRONTEND=noninteractive \
11-
&& apt-get -yq install --no-install-recommends bash-completion
12-
RUN su vscode -c "source /etc/bash_completion"
11+
&& apt-get -yq install --no-install-recommends bash-completion \
12+
&& apt-get clean \
13+
&& rm -rf /var/lib/apt/lists/* \
14+
&& su vscode -c "source /etc/bash_completion"
1315

1416
# [Optional] Uncomment this line to install global node packages.
1517
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1

0 commit comments

Comments
 (0)