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 338ac00 commit a6c5494Copy full SHA for a6c5494
.github/.devcontainer/Dockerfile
@@ -7,10 +7,6 @@ ENV LANG="C.UTF-8" \
7
SHELL=/bin/bash \
8
DOCKER_BUILDKIT=1
9
10
-# Restore man command
11
-RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
12
- && yes | unminimize 2>&1
13
-
14
# Install packages in optimized order for better layer caching
15
RUN apt-get update \
16
&& apt-get upgrade -y \
@@ -29,6 +25,13 @@ RUN apt-get update \
29
25
zip \
30
26
rsync \
31
27
moreutils \
28
+ # Minimal man support
+ man-db \
+ manpages \
+ manpages-dev \
32
+ groff-base \
33
+ less \
34
+ locales \
35
&& add-apt-repository universe \
36
&& apt-get clean \
37
&& rm -rf /var/lib/apt/lists/*
0 commit comments