python-classroom/Dockerfile
2017-03-02 17:39:18 +01:00

15 lines
549 B
Docker

FROM registry.fedoraproject.org/fedora:26
LABEL MAINTAINER "Miro Hroncok <mhroncok@redhat.com>, Tomas Orsava <torsava@redhat.com>"
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"]