Compare commits
18 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
245fdfaaa0 | ||
|
|
d3cd275a99 | ||
|
|
ab9b930e4f | ||
|
|
ac2bf06725 | ||
|
|
e2dd7ea85d | ||
|
|
62241a7a20 | ||
|
|
2bf688259a | ||
|
|
9bfe90f0a6 | ||
|
|
8bf4f3b37f | ||
|
|
5d9a505487 | ||
|
|
1d95b3eef4 | ||
|
|
b1a92b1c05 | ||
|
|
4a8e7770cb | ||
|
|
af2ca9f629 | ||
|
|
75b75ad213 | ||
|
|
e2f2126cca | ||
|
|
30ae9e73d6 | ||
|
|
4391715cc4 |
1 changed files with 8 additions and 7 deletions
15
Dockerfile
15
Dockerfile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue