Add new file

This commit is contained in:
Daniel Schubert 2019-04-11 20:52:01 +00:00
commit 088272c61f
1 changed files with 19 additions and 0 deletions

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM debian:buster
MAINTAINER Dan <dan@danletard.de>
RUN apt-get update && apt-get -y upgrade && \
apt-get install -y lib32gcc1 lib32stdc++6 wget && \
adduser --uid 2000 --home /home/arma3 --shell /bin/bash arma3
USER arma3
VOLUME ["/home/arma3"]
ADD start.sh /start.sh
ADD server.cfg /tmp/server.cfg
EXPOSE 2302/udp
EXPOSE 2303/udp
EXPOSE 2304/udp
CMD ["/bin/bash", "/start.sh"]
dany@pax2eroNG:~/tmp/arma3$