We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a25bb3 commit 9c2d90dCopy full SHA for 9c2d90d
.devcontainer/Dockerfile
@@ -8,8 +8,10 @@ RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/
8
9
# [Optional] Uncomment this section to install additional OS packages.
10
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"
+ && apt-get -yq install --no-install-recommends bash-completion \
+ && apt-get clean \
13
+ && rm -rf /var/lib/apt/lists/* \
14
+ && su vscode -c "source /etc/bash_completion"
15
16
# [Optional] Uncomment this line to install global node packages.
17
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
0 commit comments