diff options
Diffstat (limited to 'OS/Dockerfile')
| -rw-r--r-- | OS/Dockerfile | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/OS/Dockerfile b/OS/Dockerfile index da351a2..82c9a7a 100644 --- a/OS/Dockerfile +++ b/OS/Dockerfile @@ -7,10 +7,12 @@ 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 && \ -    mkdir /data/logs -ENV TERM=xterm +    mkdir /data /logs && \ +    touch $STARTUPLOG +VOLUME [$LOG_PATH]  CMD ["/bin/run.sh"] | 
