-
Notifications
You must be signed in to change notification settings - Fork 25
/
Dockerfile
80 lines (64 loc) · 2.61 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# specifying the platform here allows builds to work
# correctly on Apple Silicon machines
FROM --platform=amd64 ruby:2.7.4-slim-buster as base
ARG VCS_REF
ARG GH_USER=puppetlabs
LABEL org.label-schema.vcs-ref="${VCS_REF}" \
org.label-schema.vcs-url="https://github.com/${GH_USER}/puppet-dev-tools"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq \
&& apt-get install -y locales \
&& sed -i -e 's/# \(en_US\.UTF-8 .*\)/\1/' /etc/locale.gen \
&& locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN apt-get install -y apt-utils \
&& apt-get update -qq \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends curl libxml2-dev libxslt1-dev g++ gcc git gnupg2 make openssh-client ruby-dev wget zlib1g-dev libldap-2.4-2 libldap-common libssl1.1 openssl cmake\
&& wget https://apt.puppet.com/puppet-tools-release-buster.deb \
&& dpkg -i puppet-tools-release-buster.deb \
&& apt-get update -qq \
&& apt-get install -y --no-install-recommends pdk=2.7.1.0-1buster \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /opt/puppetlabs/pdk/private/puppet/ruby/2.5.0/gems/httpclient-2.8.3/sample/ssl/* \
&& rm -rf /opt/puppetlabs/pdk/private/ruby/2.5.9/lib/ruby/gems/2.5.0/gems/httpclient-2.8.3/sample/ssl/* \
&& rm -rf /opt/puppetlabs/pdk/private/ruby/2.5.9/lib/ruby/gems/2.5.0/gems/httpclient-2.8.3/test/* \
&& rm -rf /opt/puppetlabs/pdk/share/cache/ruby/2.7.0/gems/httpclient-2.8.3/sample/ssl/*
RUN ln -s /bin/mkdir /usr/bin/mkdir
# Run tests on a module created with PDK 1.18.1 using the current PDK to pull in
# any other dependencies and then delete the 1.18.1 test module.
#
# Simply running "bundle install" against the module is not enough,
# as PDK has further dependencies to pull in.
COPY pdk_1_18_1_dependencies /test_module
RUN cd test_module \
&& pdk validate \
&& cd .. \
&& rm -rf test_module
RUN groupadd --gid 1001 puppetdev \
&& useradd --uid 1001 --gid puppetdev --create-home puppetdev
# Prep for non-root user
RUN gem install bundler -v 2.4.22 \
&& chown -R puppetdev:puppetdev /usr/local/bundle \
&& mkdir /setup \
&& chown -R puppetdev:puppetdev /setup \
&& mkdir /repo \
&& chown -R puppetdev:puppetdev /repo
# Switch to a non-root user for everything below here
USER puppetdev
# Install dependent gems
WORKDIR /setup
ADD Gemfile* /setup/
COPY Rakefile /Rakefile
RUN bundle config set system 'true' \
&& bundle config set jobs 3 \
&& bundle install \
&& rm -f /home/puppetdev/.bundle/config \
&& rm -rf /usr/local/bundle/gems/puppet-7.*.0/spec
WORKDIR /repo
FROM base AS rootless
FROM base AS main
USER root