Compare commits
16 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
386a0f9176 | ||
|
|
c3b05afaaf | ||
|
|
8b0861c60d | ||
|
|
c48503c7d5 | ||
|
|
fb80ac4c96 | ||
|
|
de853df754 | ||
|
|
79db7e6a9b | ||
|
|
648927bd5f | ||
|
|
33cb33fa4c | ||
|
|
aec6ea2223 | ||
|
|
19d738deb8 | ||
|
|
4105401fa4 | ||
|
|
e2ad996a6d | ||
|
|
2a72f87e68 | ||
|
|
cbe5029fac | ||
|
|
4719ef1498 |
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:26
|
||||
MAINTAINER "Stef Walter" <stefw@redhat.com>
|
||||
|
||||
ENV VERSION=181
|
||||
ENV VERSION=135 RELEASE=16
|
||||
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