17 lines
591 B
Docker
17 lines
591 B
Docker
FROM registry.fedoraproject.org/fedora:30
|
|
LABEL MAINTAINER "Miro Hroncok <mhroncok@redhat.com>, Tomas Orsava <torsava@redhat.com>"
|
|
|
|
ENV NAME=python-classroom VERSION=0.5 ARCH=noarch
|
|
LABEL BZComponent="$NAME" \
|
|
Name="$FGC/$NAME" \
|
|
Version="$VERSION" \
|
|
Architecture="$ARCH" \
|
|
Summary="Ready to use container for teaching and learning Python"
|
|
|
|
RUN dnf -y --setopt=install_weak_deps=false --disablerepo rawhide-modular \
|
|
install "@python-classroom" nano openssh-clients vim-enhanced wget man \
|
|
&& dnf clean all
|
|
|
|
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
|
|
|
CMD ["/bin/bash"]
|