forked from dogtagpki/pki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
211 lines (158 loc) · 6.06 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#
# Copyright Red Hat, Inc.
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# https://docs.fedoraproject.org/en-US/containers/guidelines/guidelines/
ARG VENDOR="Dogtag"
ARG MAINTAINER="Dogtag PKI Team <[email protected]>"
ARG COMPONENT="dogtag-pki"
ARG LICENSE="GPLv2 and LGPLv2"
ARG ARCH="x86_64"
ARG VERSION="0"
ARG OS_VERSION="latest"
ARG COPR_REPO="@pki/master"
################################################################################
FROM registry.fedoraproject.org/fedora:$OS_VERSION AS fedora-runner
RUN dnf install -y systemd \
&& dnf clean all \
&& rm -rf /var/cache/dnf
CMD [ "/usr/sbin/init" ]
################################################################################
FROM fedora-runner AS pki-deps
ARG COPR_REPO
# Enable COPR repo if specified
RUN if [ -n "$COPR_REPO" ]; then dnf install -y dnf-plugins-core; dnf copr enable -y $COPR_REPO; fi
# Install PKI runtime dependencies
RUN dnf install -y dogtag-pki \
&& dnf remove -y dogtag-* --noautoremove \
&& dnf clean all \
&& rm -rf /var/cache/dnf
################################################################################
FROM pki-deps AS pki-builder-deps
# Install build tools
RUN dnf install -y rpm-build
# Import PKI sources
COPY pki.spec /root/pki/
WORKDIR /root/pki
# Install PKI build dependencies
RUN dnf builddep -y --spec pki.spec
################################################################################
FROM pki-builder-deps AS pki-builder
# Import PKI sources
COPY . /root/pki/
# Build and install PKI packages
RUN ./build.sh --work-dir=build rpm
################################################################################
FROM pki-deps AS pki-runner
# Copy PKI packages
COPY --from=pki-builder /root/pki/build/RPMS/* /tmp/RPMS/
# Install PKI packages
RUN dnf localinstall -y /tmp/RPMS/* \
&& dnf clean all \
&& rm -rf /var/cache/dnf \
&& rm -rf /tmp/RPMS
################################################################################
FROM pki-runner AS pki-server
ARG SUMMARY="Dogtag PKI Server"
LABEL name="pki-server" \
summary="$SUMMARY" \
license="$LICENSE" \
version="$VERSION" \
architecture="$ARCH" \
maintainer="$MAINTAINER" \
vendor="$VENDOR" \
usage="podman run -p 8080:8080 -p 8443:8443 pki-server" \
com.redhat.component="$COMPONENT"
EXPOSE 8080 8443
# Create PKI server
RUN pki-server create tomcat@pki --user tomcat --group root
# Create NSS database
RUN pki-server nss-create -i tomcat@pki --no-password
# Enable JSS
RUN pki-server jss-enable -i tomcat@pki
# Configure SSL connector
RUN pki-server http-connector-add -i tomcat@pki \
--port 8443 \
--scheme https \
--secure true \
--sslEnabled true \
--sslProtocol SSL \
--sslImpl org.dogtagpki.tomcat.JSSImplementation \
Secure
# Configure SSL server certificate
RUN pki-server http-connector-cert-add -i tomcat@pki \
--keyAlias sslserver \
--keystoreType pkcs11 \
--keystoreProvider Mozilla-JSS
# Grant the root group the full access to PKI server files
# https://www.openshift.com/blog/jupyter-on-openshift-part-6-running-as-an-assigned-user-id
RUN chgrp -Rf root /var/lib/tomcats/pki
RUN chmod -Rf g+rw /var/lib/tomcats/pki
CMD [ "/usr/share/pki/server/bin/pki-server-run" ]
################################################################################
FROM pki-runner AS pki-ca
ARG SUMMARY="Dogtag PKI Certificate Authority"
LABEL name="pki-ca" \
summary="$SUMMARY" \
license="$LICENSE" \
version="$VERSION" \
architecture="$ARCH" \
maintainer="$MAINTAINER" \
vendor="$VENDOR" \
usage="podman run -p 8080:8080 -p 8443:8443 pki-ca" \
com.redhat.component="$COMPONENT"
EXPOSE 8080 8443
# Create PKI server
RUN pki-server create --group root
# Create NSS database
RUN pki-server nss-create --no-password
VOLUME [ "/certs" ]
CMD [ "/usr/share/pki/ca/bin/pki-ca-run" ]
################################################################################
FROM pki-server AS pki-acme
ARG SUMMARY="Dogtag PKI ACME Responder"
LABEL name="pki-acme" \
summary="$SUMMARY" \
license="$LICENSE" \
version="$VERSION" \
architecture="$ARCH" \
maintainer="$MAINTAINER" \
vendor="$VENDOR" \
usage="podman run -p 8080:8080 -p 8443:8443 pki-acme" \
com.redhat.component="$COMPONENT"
# Install PKI dependencies
RUN dnf install -y bind-utils iputils abrt-java-connector postgresql postgresql-jdbc
# Install PostgreSQL JDBC driver
RUN ln -s /usr/share/java/postgresql-jdbc/postgresql.jar /usr/share/pki/server/common/lib/postgresql.jar
# Create PKI ACME application
RUN pki-server acme-create -i tomcat@pki
# Use in-memory database by default
RUN cp /usr/share/pki/acme/database/in-memory/database.conf /var/lib/tomcats/pki/conf/acme
# Use NSS issuer by default
RUN cp /usr/share/pki/acme/issuer/nss/issuer.conf /var/lib/tomcats/pki/conf/acme
# Use in-memory realm by default
RUN cp /usr/share/pki/acme/realm/in-memory/realm.conf /var/lib/tomcats/pki/conf/acme
# Remove PKI ACME web application logging.properties so the logs will appear on the console
RUN rm -f /usr/share/pki/acme/webapps/acme/WEB-INF/classes/logging.properties
# Deploy PKI ACME application
RUN pki-server acme-deploy -i tomcat@pki
# Grant the root group the full access to PKI ACME files
# https://www.openshift.com/blog/jupyter-on-openshift-part-6-running-as-an-assigned-user-id
RUN chgrp -Rf root /var/lib/tomcats/pki
RUN chmod -Rf g+rw /var/lib/tomcats/pki
VOLUME [ \
"/var/lib/tomcats/pki/conf/certs", \
"/var/lib/tomcats/pki/conf/acme/metadata", \
"/var/lib/tomcats/pki/conf/acme/database", \
"/var/lib/tomcats/pki/conf/acme/issuer", \
"/var/lib/tomcats/pki/conf/acme/realm" ]
CMD [ "/usr/share/pki/acme/bin/pki-acme-run" ]
################################################################################
FROM pki-runner AS ipa-runner
# Install IPA packages
RUN dnf copr enable -y @freeipa/freeipa-master-nightly \
&& dnf install -y freeipa-server freeipa-server-dns freeipa-healthcheck freeipa-client \
python3-ipatests certbot \
&& dnf clean all \
&& rm -rf /var/cache/dnf