blob: 56fefc4e379abac509ed801c709e04ac425bb5e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM centos:8
ENV SUMMARY="podman-docker-builder" \
DESCRIPTION="build docker images using podman"
LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \
summary="${SUMMARY}" \
description="${DESCRIPTION}"
USER root
RUN dnf update -y && \
dnf install -y podman podman-docker buildah && \
dnf clean all -y
COPY configure-podman /root
RUN /root/configure-podman
|