blob: 82c9a7a85900929abd5626c6af3d1104edebe22b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | FROM fedora:rawhide
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 iputils net-tools wget logrotate zip && \
    dnf clean all 
ENV STARTUPLOG=/logs/startup.log \
    LOG_PATH=/logs
COPY *.sh /bin/
RUN chmod 775 /bin/sx-lib.sh /bin/run.sh && \
    mkdir /data /logs && \
    touch $STARTUPLOG
VOLUME [$LOG_PATH]
CMD ["/bin/run.sh"]
 |