-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (21 loc) · 988 Bytes
/
Dockerfile
File metadata and controls
30 lines (21 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM debian
RUN apt-get update && apt-get install -y wget unzip gnupg gnupg2 gnupg1 apt-transport-https lib32gcc1 wget git make gcc libssl-dev
RUN dpkg --add-architecture i386 && wget -nc https://dl.winehq.org/wine-builds/Release.key && apt-key add Release.key
RUN echo deb https://dl.winehq.org/wine-builds/debian/ stretch main >> /etc/apt/sources.list
RUN mkdir -p ~/workingdir && apt-get update && apt-get -y install --install-recommends winehq-stable
RUN git clone https://github.com/KoffeinFlummi/armake.git
RUN cd armake && make install
RUN cd /root \
&& wget http://media.steampowered.com/installer/steamcmd_linux.tar.gz \
&& tar -zxvf steamcmd_linux.tar.gz \
&& rm -f steamcmd_linux.tar.gz
RUN /root/steamcmd.sh +login anonymous +quit
RUN echo 233800 > steam_appid.txt
COPY installtools.sh /
ARG STEAM_AUTHCODE
ARG STEAM_USERNAME
ARG STEAM_PASSWORD
RUN /installtools.sh && rm -f /installtools.sh
WORKDIR /arma3
RUN cd /arma3 && ls
RUN wine start Binarize/binarize.exe