Commit 6509cf3 Jacob Woffenden
committed
1 parent a6cf702 commit 6509cf3 Copy full SHA for 6509cf3
File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,11 @@ COPY --chown=nobody:nobody --chmod=0755 src/usr/local/bin/devcontainer-utils /us
10
10
COPY --chown=nobody:nobody --chmod=0444 src/usr/local/etc/vscode-dev-containers/first-run-notice.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt
11
11
COPY --chown=vscode:vscode --chmod=0755 src/home/vscode/.oh-my-zsh/custom/themes/devcontainers.zsh-theme /home/vscode/.oh-my-zsh/custom/themes/devcontainers.zsh-theme
12
12
13
- RUN chsh --shell "$(which zsh)" vscode \
13
+ RUN apt-get update --yes \
14
+ && apt-get upgrade --yes \
15
+ && apt-get clean --yes \
16
+ && rm -rf /var/lib/apt/lists/* \
17
+ && chsh --shell "$(which zsh)" vscode \
14
18
&& install --directory --owner=vscode --group=vscode /home/vscode/.devcontainer \
15
19
&& install --directory --owner=vscode --group=vscode /home/vscode/.devcontainer/featurerc.d \
16
20
&& install --directory --owner=vscode --group=vscode /home/vscode/.devcontainer/promptrc.d
You can’t perform that action at this time.
0 commit comments