Differences From Artifact [add4fb55fc]:
- File Dockerfile — part of check-in [0733be502b] at 2022-11-30 21:27:11 on branch trunk — Added empty /tmp and /run directories to the "OS image" layer of the stock container in case someone is mounting the base layer read-only with tmpfs mounted atop these points. (Seen with "systemd-nspawn --read-only" but might affect other runtimes.) (user: wyoung size: 6033)
To Artifact [766a277d45]:
- File
Dockerfile
— part of check-in
[ec8ef573b3]
at
2023-01-17 05:28:37
on branch trunk
— Generating the /etc/os-release file for the OCI container using
autosetup at configure time rather than from a build arg in the
Dockerfile at image creation time. This lets us back out the use of
heredocs in the Dockerfile, which isn't supported in Podman at all as of
this writing and under Docker requires use of BuildKit rather than the
legacy "docker build" mechanism.
The primary consequence of doing it this way is that the Fossil version number in that generated file becomes the configure-time version, unconditionally. The old way let you override the FSLVER variable at image build time and have that value put into the os-release file. Under this new scheme, you now have to run "/jail/bin/fossil version" to find out what version of Fossil got baked into the image. (user: wyoung size: 5847)
| ︙ | |||
32 33 34 35 36 37 38 | 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 | - + - - + - - - - - - + |
COPY containers/busybox-config /tmp/bbx/.config
ADD $BBXURL /tmp/bbx/src.tar.gz
RUN set -x \
&& tar --strip-components=1 -C bbx -xzf bbx/src.tar.gz \
&& ( cd bbx && yes "" | make oldconfig && make -j11 ) \
&& test ! -x /usr/bin/upx || upx -9q bbx/busybox
|
| ︙ |