Compare commits

..

18 commits

Author SHA1 Message Date
Mohan Boddu
245fdfaaa0 "Bump RELEASE for automatic rebuild" 2018-07-17 18:45:33 +00:00
Mohan Boddu
d3cd275a99 "Bump RELEASE for automatic rebuild" 2018-07-17 13:03:10 +00:00
Mohan Boddu
ab9b930e4f "Bump RELEASE for automatic rebuild" 2018-07-06 13:41:08 +00:00
Mohan Boddu
ac2bf06725 "Bump RELEASE for automatic rebuild" 2018-05-21 15:52:55 +00:00
Mohan Boddu
e2dd7ea85d "Bump RELEASE for automatic rebuild" 2018-04-20 14:10:20 +00:00
Mohan Boddu
62241a7a20 "Bump RELEASE for automatic rebuild" 2018-03-29 14:11:24 +00:00
Mohan Boddu
2bf688259a "Bump RELEASE for automatic rebuild" 2018-03-15 15:30:27 +00:00
Mohan Boddu
9bfe90f0a6 "Bump RELEASE for automatic rebuild" 2018-03-01 18:31:11 +00:00
Mohan Boddu
8bf4f3b37f "Bump RELEASE for automatic rebuild" 2018-03-01 17:00:32 +00:00
Mohan Boddu
5d9a505487 "Bump RELEASE for automatic rebuild" 2018-02-16 14:58:05 +00:00
Mohan Boddu
1d95b3eef4 "Bump RELEASE for automatic rebuild" 2018-01-18 23:24:38 +00:00
Mohan Boddu
b1a92b1c05 "Bump RELEASE for automatic rebuild" 2018-01-18 23:18:03 +00:00
Mohan Boddu
4a8e7770cb "Bump RELEASE for automatic rebuild" 2018-01-18 23:11:01 +00:00
Mohan Boddu
af2ca9f629 "Bump RELEASE for automatic rebuild" 2018-01-18 23:04:04 +00:00
Mohan Boddu
75b75ad213 "Bump RELEASE for automatic rebuild" 2018-01-18 22:35:07 +00:00
Mohan Boddu
e2f2126cca "Bump RELEASE for automatic rebuild" 2018-01-09 17:06:31 +00:00
Mohan Boddu
30ae9e73d6 "Bump RELEASE for automatic rebuild" 2018-01-09 17:00:04 +00:00
Micah Abbott
4391715cc4 Dockerfile: update for Fedora 27 release
Update the FROM line to Fedora 27 base image and change VERSION
according to guidelines.
2017-11-16 11:49:06 -06:00

View file

@ -1,22 +1,23 @@
FROM registry.fedoraproject.org/fedora:rawhide
FROM registry.fedoraproject.org/fedora:27
MAINTAINER "Stef Walter" <stefw@redhat.com>
ENV VERSION=181
ENV VERSION=0 RELEASE=18
LABEL BZComponent="cockpit" \
Name="$FGC/cockpit" \
Version="$VERSION" \
Release="$RELEASE.$DISTTAG" \
Architecture="x86_64"
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 dnf install -y cockpit-ws cockpit-dashboard
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 /container/atomic-uninstall /container/atomic-run
RUN chmod -v +x /container/atomic-install
RUN chmod -v +x /container/atomic-uninstall
RUN chmod -v +x /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