blob: f0595899c047c811889da0985045a9101d55dda2 (
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 buildah && \
dnf clean all -y
COPY configure-podman /root
RUN /root/configure-podman
|