Compare commits

...
Sign in to create a new pull request.

9 commits

Author SHA1 Message Date
Clement Verna
789142ec7b Drop Release label in favor of OSBS release_bump plugin.
OSBS can automatically bump the release number, for that
we just need to drop the label from the Dockerfile

See https://pagure.io/ContainerSIG/container-sig/issue/1

Signed-off-by: Clement Verna <cverna@tutanota.com>
2018-08-27 10:22:17 +02:00
Mohan Boddu
aa62f61e14 "Bump RELEASE for automatic rebuild" 2018-07-24 18:50:59 +00:00
Mohan Boddu
6545624f5a "Bump RELEASE for automatic rebuild" 2018-07-23 13:09:25 +00:00
Mohan Boddu
aef664d54b "Bump RELEASE for automatic rebuild" 2018-07-09 13:31:23 +00:00
Mohan Boddu
0537957dd9 "Bump RELEASE for automatic rebuild" 2018-05-30 19:20:05 +00:00
Mohan Boddu
43734cfc00 "Bump RELEASE for automatic rebuild" 2018-05-21 17:55:47 +00:00
Mohan Boddu
24df70ecfc "Bump RELEASE for automatic rebuild" 2018-05-21 14:18:46 +00:00
Miro Hrončok
597d3bd918 Workaround for bz1566593, disbale modularity \o/ 2018-05-16 14:23:10 +02:00
Miro Hrončok
5fcc7dcf8d Use Fedora 28 2018-05-14 11:43:17 +02:00

View file

@ -1,16 +1,15 @@
FROM registry.fedoraproject.org/fedora:rawhide
FROM registry.fedoraproject.org/fedora:28
LABEL MAINTAINER "Miro Hroncok <mhroncok@redhat.com>, Tomas Orsava <torsava@redhat.com>"
ENV NAME=python-classroom VERSION=0.4 RELEASE=1 ARCH=noarch
ENV NAME=python-classroom VERSION=0.4 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=install_weak_deps=false install \
"@python-classroom" nano openssh-clients vim-enhanced wget man \
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