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"]