-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
30 lines (25 loc) · 898 Bytes
/
Dockerfile
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 steamcmd/steamcmd:ubuntu-20
COPY docker-entrypoint.sh /docker-entrypoint.sh
ARG DEBIAN_FRONTEND="noninteractive"
ENV TZ=Etc/UTC
ENV GAME_ID=1829350
ENV GAME_PARAMS=
ENV VALIDATE=true
RUN apt update && \
apt-get install --no-install-recommends -y wget && \
wget -nc https://dl.winehq.org/wine-builds/winehq.key && \
mv winehq.key /usr/share/keyrings/winehq-archive.key && \
wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources && \
mv winehq-focal.sources /etc/apt/sources.list.d/ && \
apt update && \
apt install --no-install-recommends -y winehq-stable xvfb && \
rm -rf /var/lib/apt/lists/* && \
apt remove --purge -y wget && \
apt clean && \
apt autoremove -y && \
mkdir /data && \
mkdir /logs && \
mkdir /vrising && \
chmod +x /docker-entrypoint.sh
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD []