Compare commits

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

5 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

View file

@ -1,23 +1,22 @@
FROM registry.fedoraproject.org/fedora:26
FROM registry.fedoraproject.org/fedora:rawhide
MAINTAINER "Stef Walter" <stefw@redhat.com>
ENV VERSION=135 RELEASE=1
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