Some checks failed
Build and Push Docker Image / build (push) Failing after 5m28s
25 lines
939 B
Docker
25 lines
939 B
Docker
FROM debian:bookworm-slim
|
|
LABEL org.opencontainers.image.description="A Docker image with Podman that can build and push OCI Docker images for different types of CPU architecture thanks to QEMU."
|
|
LABEL org.opencontainers.image.title="citools-podmanx"
|
|
LABEL org.opencontainers.image.authors="Eric Coissac <eric@petite-maison-orange.fr>"
|
|
LABEL org.opencontainers.image.source="https://gargoton.petite-maison-orange.fr/image/citools-podmanx"
|
|
LABEL org.opencontainers.image.documentation="https://gargoton.petite-maison-orange.fr/image/citools-podmanx"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV DOCKER_CLI_EXPERIMENTAL=enabled
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
docker.io \
|
|
podman \
|
|
curl \
|
|
jq \
|
|
git \
|
|
ca-certificates \
|
|
buildah \
|
|
tini && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
|
CMD ["/bin/bash"]
|