aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2020-07-13 10:47:20 +0200
committerGerd Hoffmann <kraxel@redhat.com>2020-07-13 10:47:20 +0200
commit20132eefecd6df5ff72166d80fa02751b41b677e (patch)
tree0cf643a221eb0cc3734bb80af17a67b2cd96891d /Dockerfile
downloadpodman-docker-builder-20132eefecd6df5ff72166d80fa02751b41b677e.tar.gz
initial commit
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..f059589
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,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