mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-18 02:06:23 +00:00
Update Dockerfile
This commit is contained in:
parent
3d8339250c
commit
4854e6b33a
26
Dockerfile
26
Dockerfile
@ -2,16 +2,30 @@ FROM ubuntu:14.04
|
||||
|
||||
MAINTAINER Robert Schumann <gutmensch@n-os.org>
|
||||
|
||||
ENV APPDIR `pwd`/raumserver
|
||||
ENV wget_opts "-q"
|
||||
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
|
||||
|
||||
WORKDIR /root
|
||||
|
||||
RUN apt-get update && apt-get install -y git wget unzip
|
||||
|
||||
RUN wget http://bassmaniacs.com/data/appBinaries/raumserver/currentVersion/raumserverDaemon_linux_X64.zip \
|
||||
&& unzip raumserverDaemon_linux_X64.zip -d $APPDIR \
|
||||
RUN wget $wget_opts $raumserver_release/raumserverDaemon_linux_X64.zip \
|
||||
&& unzip raumserverDaemon_linux_X64.zip -d raumserver \
|
||||
&& mkdir -p /etc/raumfeld/raumserverDaemon \
|
||||
&& ln -s $APPDIR/docroot /etc/raumfeld/raumserverDaemon/docroot
|
||||
|
||||
&& ln -s /root/raumserver/docroot /etc/raumfeld/raumserverDaemon/docroot \
|
||||
&& wget $wget_opts $raumserver_libs/libunwind-x86_64.so.8.0.1 -O /usr/lib/libunwind-x86_64.so.8.0.1 \
|
||||
&& ln -s /usr/lib/libunwind-x86_64.so.8.0.1 /usr/lib/libunwind-x86_64.so.8 \
|
||||
&& wget $wget_opts $raumserver_libs/libunwind.so.8.0.1 -O /usr/lib/libunwind.so.8.0.1 \
|
||||
&& ln -s /usr/lib/libunwind.so.8.0.1 /usr/lib/libunwind.so.8 \
|
||||
&& wget $wget_opts $raumserver_libs/libunwind-coredump.so.0.0.0 -O /usr/lib/libunwind-coredump.so.0.0.0 \
|
||||
&& ln -s /usr/lib/libunwind-coredump.so.0 /usr/lib/libunwind-coredump.so.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 \
|
||||
&& 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
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["${APPDIR}/raumsrvDaemon"]
|
||||
CMD ["/root/raumserver/raumsrvDaemon"]
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user