blob: 45efeefef76406c0b508a76f0b42d92b4e00e2a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM fedora:latest
MAINTAINER Christophe LARUE <dev@startx.fr>
USER root
# Install minimal packages
RUN dnf -y install deltarpm pwgen tar python-dnf-plugins-extras-migrate && \
dnf-2 migrate && \
dnf -y install psmisc procps coreutils findutils wget logrotate tar zip && \
dnf clean all
COPY *.sh /bin/
RUN chmod 775 /bin/sx-lib.sh /bin/run.sh
CMD ["/bin/run.sh"]
|