blob: 7d52f9acee76092361ae5a42f74de03b4e94aaeb (
plain)
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
|
FROM registry.centos.org/centos:8
ENV SUMMARY="httpd base" \
DESCRIPTION="base image for httpd s2i images"
LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \
summary="${SUMMARY}" \
description="${DESCRIPTION}" \
io.k8s.display-name="${SUMMARY}" \
io.k8s.description="${DESCRIPTION}" \
io.openshift.expose-services="8080:http" \
io.openshift.tags="httpd" \
io.openshift.s2i.scripts-url="image:///usr/libexec/s2i"
USER root
COPY ./etc/centos-mirror.sh /root
COPY ./etc/proxy.sh /etc/profile.d
COPY ./etc/*.conf /etc/httpd/conf.d/
COPY ./s2i/bin/ /usr/libexec/s2i
RUN /root/centos-mirror.sh; \
source /etc/profile.d/proxy.sh; \
dnf update -y && \
dnf install -y httpd && \
dnf clean all -y
RUN mkdir -p /run/httpd;\
chmod 777 /run/httpd /etc/httpd/logs;\
sed -i -e '/Listen/s/^/#/' /etc/httpd/conf/httpd.conf;\
rm -f /etc/httpd/conf.d/welcome.conf
RUN mkdir -p /opt/app-root;\
chmod 755 /opt /opt/app-root;\
useradd -d /opt/app-root/src -u 1001 default
USER 1001
EXPOSE 8080
CMD ["/usr/libexec/s2i/usage"]
|