blob: 95e679d071ef173c8a21f3a3a1a2f98253bfc400 (
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-* /usr/local/bin
RUN /usr/local/bin/configure-podman
|