Compare commits
25 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c3292770fe | ||
|
|
d614930e17 | ||
|
|
ab68f90d78 | ||
|
|
c52b839664 | ||
|
|
e9ce6df120 | ||
|
|
a6e92b8211 | ||
|
|
8a91912287 | ||
|
|
5572bed79c | ||
|
|
7ccefbae28 | ||
|
|
0bc5617339 | ||
|
|
71639ff52a | ||
|
|
71ea0c6bf5 | ||
|
|
c065d39da7 | ||
|
|
588879a862 | ||
|
|
39483bd840 | ||
|
|
fc8c2e6cc2 | ||
|
|
7aa15b4a08 | ||
|
|
59ee950540 | ||
|
|
5a89b2f994 | ||
|
|
4e5d38dcc5 | ||
|
|
2d722e3a29 | ||
|
|
35686f795b | ||
|
|
eba037c974 | ||
|
|
1813a1a515 | ||
|
|
4462f08e86 |
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:25
|
||||
MAINTAINER "Stef Walter" <stefw@redhat.com>
|
||||
|
||||
ENV VERSION=181
|
||||
ENV VERSION=135 RELEASE=14
|
||||
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