Skip to content

Commit 712142e

Browse files
authored
Merge branch 'main' into osrf-main
2 parents e1f9bfe + 776dcf5 commit 712142e

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

src/rocker/templates/dev_helpers_snippet.Dockerfile.em

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,17 @@
22
RUN apt-get update \
33
&& apt-get install -y \
44
byobu \
5-
emacs \
5+
apt-utils \
6+
wget \
7+
gpg \
8+
apt-transport-https \
69
&& apt-get clean
10+
11+
# Install VS Code
12+
RUN wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg \
13+
&& install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg \
14+
&& echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list \
15+
&& rm -f packages.microsoft.gpg \
16+
&& apt-get update \
17+
&& apt-get install -y code \
18+
&& apt-get clean

0 commit comments

Comments
 (0)