forked from DivinumOfficium/divinum-officium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
56 lines (44 loc) · 1.84 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
FROM public.ecr.aws/docker/library/alpine:3.14 as gitinfo
RUN apk add git
COPY .git /build/
WORKDIR /build
# Write build info to be available at $url/buildinfo
RUN echo "{" > /build/buildinfo
RUN echo " \"build-date\": \"`date +%s`\"," >> /build/buildinfo
RUN echo " \"build-date-human\": \"`date`\"," >> /build/buildinfo
RUN echo " \"commit\": \"`git rev-parse HEAD`\"," >> /build/buildinfo
RUN echo " \"branch\": \"`git rev-parse --abbrev-ref HEAD`\"" >> /build/buildinfo
RUN echo "}" >> /build/buildinfo
# Final container (copies in /out/buildinfo when done)
FROM public.ecr.aws/docker/library/perl:5.28-slim as final
# Set envs
ENV APACHE_RUN_USER www-data \
APACHE_RUN_GROUP www-data \
APACHE_LOCK_DIR /var/lock/apache2 \
APACHE_LOG_DIR /var/log/apache2 \
APACHE_PID_FILE /var/run/apache2/apache2.pid \
APACHE_SERVER_NAME localhost
# Install packages
RUN apt-get update && apt-get install -y \
curl \
wget \
apache2 \
libcgi-session-perl \
&& rm -rf /var/lib/apt/lists/*
# Get dumb-init to use a proper init system
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64 && \
chmod +x /usr/local/bin/dumb-init
# Load config files
COPY docker/apache/ports.conf /etc/apache2/ports.conf
COPY docker/apache/apache2.conf /etc/apache2/apache2.conf
# Set permissionsso apache can write to logs without root
RUN mkdir -p /var/run/apache2 /var/lock/apache2 /var/log/apache2 ; chown -R www-data:www-data /var/lock/apache2 /var/log/apache2 /var/run/apache2
# Copy in code
WORKDIR /var/www
COPY --chown=www-data:www-data web /var/www/web
# Write build info to be available at $url/buildinfo
COPY --from=gitinfo /build/buildinfo /var/www/web/buildinfo
# Expose default port
EXPOSE 80
ENTRYPOINT ["/usr/local/bin/dumb-init", "--"]
CMD ["/usr/sbin/apache2ctl", "-DFOREGROUND"]