-
Notifications
You must be signed in to change notification settings - Fork 64
/
Dockerfile
executable file
·37 lines (35 loc) · 1.18 KB
/
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
31
32
33
34
35
36
37
FROM ubuntu:22.04
LABEL maintainer="Tim Chaubet"
VOLUME ["/mnt/vrising/server", "/mnt/vrising/persistentdata"]
ARG DEBIAN_FRONTEND="noninteractive"
RUN apt update -y && \
apt-get upgrade -y && \
apt-get install -y apt-utils && \
apt-get install -y software-properties-common \
tzdata && \
add-apt-repository multiverse && \
dpkg --add-architecture i386 && \
apt update -y && \
apt-get upgrade -y
RUN useradd -m steam && cd /home/steam && \
echo steam steam/question select "I AGREE" | debconf-set-selections && \
echo steam steam/license note '' | debconf-set-selections && \
apt purge steam steamcmd && \
apt install -y gdebi-core \
libgl1-mesa-glx:i386 \
wget && \
apt install -y steam \
steamcmd && \
ln -s /usr/games/steamcmd /usr/bin/steamcmd
#RUN apt install -y mono-complete
RUN apt install -y wine \
winbind \
winetricks
RUN apt install -y xserver-xorg \
xvfb
RUN rm -rf /var/lib/apt/lists/* && \
apt clean && \
apt autoremove -y
COPY start.sh /start.sh
RUN chmod +x /start.sh
CMD ["/start.sh"]