Compare commits

..

11 commits

Author SHA1 Message Date
Martin Pitt
f8b02a730c Update for Cockpit 181 2018-11-08 21:46:39 +01:00
Martin Pitt
57b1ac75e0 Update for Cockpit 176 2018-09-03 11:44:22 +02:00
Clement Verna
62c6ef4f94 Use the rawhide tag for the master branch
Signed-off-by: Clement Verna <cverna@tutanota.com>
2018-08-20 17:17:28 +02:00
Clement Verna
b28310fccb 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-20 17:08:30 +02:00
Martin Pitt
8f01b0e193 Update for cockpit 166 and Fedora 29 2018-05-02 19:14:15 +02:00
petervo
47960ad041 Update for cockpit 135 2017-03-23 15:06:01 -07:00
Adam Miller
4017cc15da bump release for demo build 2016-12-22 11:51:35 -06:00
Adam Miller
aa2a3d7c5c bump spec for test build 2016-12-22 10:57:59 -06:00
Adam Miller
0e2146c8ee bump release for test build 2016-12-16 00:15:13 -06:00
Adam Miller
fe8becb04e switch to fedora:26 base image for rawhide 2016-12-15 23:49:33 -06:00
Adam Miller
8aff9763a2 bump release for test build 2016-12-15 23:41:19 -06:00

View file

@ -1,23 +1,22 @@
FROM registry.fedoraproject.org/fedora:25
FROM registry.fedoraproject.org/fedora:rawhide
MAINTAINER "Stef Walter" <stefw@redhat.com>
ENV VERSION=135 RELEASE=14
ENV VERSION=181
LABEL BZComponent="cockpit" \
Name="$FGC/cockpit" \
Version="$VERSION" \
Release="$RELEASE.$DISTTAG" \
Architecture="x86_64"
RUN dnf install -y cockpit-ws cockpit-dashboard
RUN dnf install -y cockpit-ws cockpit-dashboard cockpit-bridge && \
mkdir -p /container && ln -s /host/proc/1 /container/target-namespace && \
dnf clean all
RUN mkdir -p /container && ln -s /host/proc/1 /container/target-namespace
ADD atomic-install /container/atomic-install
ADD atomic-uninstall /container/atomic-uninstall
ADD atomic-run /container/atomic-run
RUN chmod -v +x /container/atomic-install
RUN chmod -v +x /container/atomic-uninstall
RUN chmod -v +x /container/atomic-run
RUN chmod -v +x /container/atomic-install /container/atomic-uninstall /container/atomic-run
# Make the container think it's the host OS version
RUN rm -f /etc/os-release /usr/lib/os-release && ln -sv /host/etc/os-release /etc/os-release && ln -sv /host/usr/lib/os-release /usr/lib/os-release