Skip to content

Commit ae83c3d

Browse files
rwaffenjessereynolds
authored andcommitted
fix: add ca-certificates
1 parent 0e55859 commit ae83c3d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

spec/Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,19 @@ FROM ubuntu:24.04
33
ARG PUPPET_COLLECTION
44

55
# Install required packages
6-
RUN apt update && \
7-
apt install -y --no-install-recommends \
6+
RUN apt update \
7+
&& apt install -y --no-install-recommends \
88
adduser \
9+
ca-certificates \
910
openssh-server \
1011
libssl-dev \
1112
sudo \
1213
locales \
1314
wget \
1415
apt-transport-https \
15-
tree && \
16-
apt-get clean && \
17-
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
16+
tree \
17+
&& apt-get clean \
18+
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
1819

1920
# Set the locale
2021
RUN locale-gen en_US.UTF-8

0 commit comments

Comments
 (0)