blob: 6ce2ef17a01043895720074dd940ed04e85485ec (
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 /usr/local/bin
RUN /usr/local/bin/configure-podman
|