mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-17 17:56:30 +00:00
Update Dockerfile
This commit is contained in:
parent
b58bcd555f
commit
78f7b134b4
10
Dockerfile
10
Dockerfile
@ -5,9 +5,12 @@ MAINTAINER Robert Schumann <gutmensch@n-os.org>
|
|||||||
ENV wget_opts "-q --no-check-certificate"
|
ENV wget_opts "-q --no-check-certificate"
|
||||||
ENV raumserver_release "http://bassmaniacs.com/data/appBinaries/raumserver/currentVersion"
|
ENV raumserver_release "http://bassmaniacs.com/data/appBinaries/raumserver/currentVersion"
|
||||||
ENV raumserver_libs "https://github.com/ChriD/Raumserver/raw/master/source/RaumserverDaemon/libs/linux_X64"
|
ENV raumserver_libs "https://github.com/ChriD/Raumserver/raw/master/source/RaumserverDaemon/libs/linux_X64"
|
||||||
|
ENV PATH /root:$PATH
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
|
COPY start.sh ./start.sh
|
||||||
|
|
||||||
RUN set -x \
|
RUN set -x \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends git wget unzip \
|
&& apt-get install -y --no-install-recommends git wget unzip \
|
||||||
@ -27,9 +30,10 @@ RUN set -x \
|
|||||||
&& wget $wget_opts $raumserver_libs/libunwind-setjmp.so.0.0.0 -O /usr/lib/libunwind-setjmp.so.0.0.0 \
|
&& wget $wget_opts $raumserver_libs/libunwind-setjmp.so.0.0.0 -O /usr/lib/libunwind-setjmp.so.0.0.0 \
|
||||||
&& ln -s /usr/lib/libunwind-setjmp.so.0 /usr/lib/libunwind-setjmp.so.0 \
|
&& ln -s /usr/lib/libunwind-setjmp.so.0 /usr/lib/libunwind-setjmp.so.0 \
|
||||||
&& wget $wget_opts $raumserver_libs/libunwind-ptrace.so.0.0.0 -O /usr/lib/libunwind-ptrace.so.0.0.0 \
|
&& wget $wget_opts $raumserver_libs/libunwind-ptrace.so.0.0.0 -O /usr/lib/libunwind-ptrace.so.0.0.0 \
|
||||||
&& ln -s /usr/lib/libunwind-ptrace.so.0 /usr/lib/libunwind-ptrace.so.0
|
&& ln -s /usr/lib/libunwind-ptrace.so.0 /usr/lib/libunwind-ptrace.so.0 \
|
||||||
|
&& chmod +x start.sh
|
||||||
|
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
CMD ["/root/raumserver/raumsrvDaemon"]
|
CMD ["start.sh"]
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user