We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cface6b commit 7ed3893Copy full SHA for 7ed3893
Dockerfile
@@ -3,18 +3,20 @@
3
FROM ubuntu:noble-20250910
4
5
# Add any system dependencies for the developer/build environment here
6
-RUN apt-get update && apt-get install -y --no-install-recommends \
7
- build-essential \
8
- busybox \
9
- ca-certificates \
10
- curl \
11
- gdb \
12
- git \
13
- less \
14
- locales \
15
- man-db \
16
- ssh-client \
17
- zsh
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends \
+ build-essential \
+ busybox \
+ ca-certificates \
+ curl \
+ gdb \
+ git \
+ less \
+ locales \
+ man-db \
+ ssh-client \
18
+ zsh && \
19
+ apt-get dist-clean
20
21
# VSCode will use en_US for git operations, so make it available in the container
22
# https://github.com/microsoft/vscode/pull/210506
0 commit comments