From f88936b3f3c102cb957753bc6e9e0d5866cd8eca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 2 Mar 2017 17:20:11 +0100 Subject: [PATCH] Initial import (#1427989) --- Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..76707e0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM registry.fedoraproject.org/fedora:rawhide +LABEL MAINTAINER "Miro Hroncok , Tomas Orsava " + +ENV NAME=python-classroom VERSION=0.1 RELEASE=1 ARCH=noarch +LABEL BZComponent="$NAME" \ + Name="$FGC/$NAME" \ + Version="$VERSION" \ + Release="$RELEASE.$DISTTAG" \ + Architecture="$ARCH" \ + Summary="Ready to use container for teaching and learning Python" + +RUN dnf -y --setopt=tsflags=nodocs --setopt=install_weak_deps=false \ + install "@python-classroom" && dnf clean all + +CMD ["/bin/bash"]