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 0e55859 commit ae83c3dCopy full SHA for ae83c3d
spec/Dockerfile
@@ -3,18 +3,19 @@ FROM ubuntu:24.04
3
ARG PUPPET_COLLECTION
4
5
# Install required packages
6
-RUN apt update && \
7
- apt install -y --no-install-recommends \
+RUN apt update \
+ && apt install -y --no-install-recommends \
8
adduser \
9
+ ca-certificates \
10
openssh-server \
11
libssl-dev \
12
sudo \
13
locales \
14
wget \
15
apt-transport-https \
- tree && \
16
- apt-get clean && \
17
- rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
+ tree \
+ && apt-get clean \
18
+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
19
20
# Set the locale
21
RUN locale-gen en_US.UTF-8
0 commit comments