kas-isar: Rework isar-specific entrypoint setup
Leave the isar-only commands commented-out in the container-entrypoint and simply remove the comment when building kas-isar. This is simpler, more readable and also more robust against changes of the entrypoint file. While at it, avoid a separate layer for modifying container-entrypoint. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
parent
6b1df5f425
commit
a596e2ac33
@ -48,10 +48,8 @@ RUN apt-get update && \
|
|||||||
git-buildpackage pristine-tar sbuild schroot \
|
git-buildpackage pristine-tar sbuild schroot \
|
||||||
umoci skopeo && \
|
umoci skopeo && \
|
||||||
apt-get clean && \
|
apt-get clean && \
|
||||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
|
||||||
|
sed -i 's|# kas-isar: ||g' /kas/container-entrypoint
|
||||||
RUN sed -i 's|\tGOSU="gosu builder"|\0\n\tsbuild-adduser builder >/dev/null 2>\&1|' /kas/container-entrypoint
|
|
||||||
RUN sed -i 's|#!/bin/bash|\0\n\nupdate-binfmts --enable \&\& [ -f /proc/sys/fs/binfmt_misc/status ]|' /kas/container-entrypoint
|
|
||||||
|
|
||||||
FROM kas-base as kas
|
FROM kas-base as kas
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# kas-isar: update-binfmts --enable && [ -f /proc/sys/fs/binfmt_misc/status ]
|
||||||
|
|
||||||
if mount | grep -q "on / type aufs"; then
|
if mount | grep -q "on / type aufs"; then
|
||||||
cat <<EOF >&2
|
cat <<EOF >&2
|
||||||
WARNING: Generation of wic images will fail!
|
WARNING: Generation of wic images will fail!
|
||||||
@ -32,6 +34,8 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
GOSU="gosu builder"
|
GOSU="gosu builder"
|
||||||
|
|
||||||
|
# kas-isar: sbuild-adduser builder >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$PWD" = / ]; then
|
if [ "$PWD" = / ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user