fix: Support other signals properly (#194)

This commit is contained in:
Gerald Pinder 2024-06-23 18:29:46 -04:00 committed by GitHub
parent d0d51d5aa0
commit 7a563f42da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 175 additions and 126 deletions

20
Dockerfile.fedora Normal file
View file

@ -0,0 +1,20 @@
ARG BASE_IMAGE="registry.fedoraproject.org/fedora-toolbox"
FROM $BASE_IMAGE
RUN dnf -y install dnf-plugins-core \
&& dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo \
&& dnf install --refresh -y \
docker-ce \
docker-ce-cli \
containerd.io \
docker-buildx-plugin \
docker-compose-plugin \
buildah \
podman \
skopeo \
gpg \
dumb-init
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
STOPSIGNAL SIGTERM