Skip to content

Commit 7ed3893

Browse files
authored
Remove apt lists to save space (#13)
1 parent cface6b commit 7ed3893

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

Dockerfile

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@
33
FROM ubuntu:noble-20250910
44

55
# 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
6+
RUN apt-get update && \
7+
apt-get install -y --no-install-recommends \
8+
build-essential \
9+
busybox \
10+
ca-certificates \
11+
curl \
12+
gdb \
13+
git \
14+
less \
15+
locales \
16+
man-db \
17+
ssh-client \
18+
zsh && \
19+
apt-get dist-clean
1820

1921
# VSCode will use en_US for git operations, so make it available in the container
2022
# https://github.com/microsoft/vscode/pull/210506

0 commit comments

Comments
 (0)