-
Notifications
You must be signed in to change notification settings - Fork 44
/
Dockerfile-ubuntu-18.04
54 lines (44 loc) · 2.02 KB
/
Dockerfile-ubuntu-18.04
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
FROM ubuntu:18.04 as base
### Stage 1 - add/remove packages ###
# Ensure scripts are available for use in next command
COPY ./container/root/scripts/* /scripts/
COPY ./container/root/usr/local/bin/* /usr/local/bin/
# - Symlink variant-specific scripts to default location
# - Upgrade base security packages, then clean packaging leftover
# - Add S6 for zombie reaping, boot-time coordination, signal transformation/distribution: @see https://github.com/just-containers/s6-overlay#known-issues-and-workarounds
# - Add goss for local, serverspec-like testing
RUN /bin/bash -e /scripts/ubuntu_apt_config.sh && \
/bin/bash -e /scripts/ubuntu_apt_cleanmode.sh && \
ln -s /scripts/clean_ubuntu.sh /clean.sh && \
ln -s /scripts/security_updates_ubuntu.sh /security_updates.sh && \
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
/bin/bash -e /security_updates.sh && \
apt-get install -yqq \
curl \
gpg \
apt-transport-https \
&& \
/bin/bash -e /scripts/install_s6.sh && \
/bin/bash -e /scripts/install_goss.sh && \
apt-get remove --purge -yq \
curl \
gpg \
&& \
/bin/bash -e /clean.sh && \
# out of order execution, has a dpkg error if performed before the clean script, so keeping it here,
apt-get remove --purge --auto-remove systemd --allow-remove-essential -y
# Overlay the root filesystem from this repo
COPY ./container/root /
### Stage 2 --- collapse layers ###
FROM scratch
COPY --from=base / .
# Use in multi-phase builds, when an init process requests for the container to gracefully exit, so that it may be committed
# Used with alternative CMD (worker.sh), leverages supervisor to maintain long-running processes
ENV SIGNAL_BUILD_STOP=99 \
S6_BEHAVIOUR_IF_STAGE2_FAILS=2 \
S6_KILL_FINISH_MAXTIME=5000 \
S6_KILL_GRACETIME=3000
RUN goss -g goss.base.yaml validate
# NOTE: intentionally NOT using s6 init as the entrypoint
# This would prevent container debugging if any of those service crash
CMD ["/bin/bash", "/run.sh"]