blob: 152a35c8efc13649f6ad3d3edc683ad249a952fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
COPY configure-podman /root
RUN /root/configure-podman
|