fix: Support other signals properly (#194)
This commit is contained in:
parent
d0d51d5aa0
commit
7a563f42da
11 changed files with 175 additions and 126 deletions
20
Dockerfile.fedora
Normal file
20
Dockerfile.fedora
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue