First commit
This commit is contained in:
commit
483a0ac292
2 changed files with 21 additions and 0 deletions
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
FROM debian:latest
|
||||||
|
|
||||||
|
WORKDIR /love
|
||||||
|
VOLUME [ "/data" ]
|
||||||
|
|
||||||
|
RUN dpkg --add-architecture i386 && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y wget unzip wine32
|
||||||
|
RUN cd / && \
|
||||||
|
wget https://quelsolaar.com/love.zip && \
|
||||||
|
unzip love.zip && \
|
||||||
|
rm love.zip && cd /love
|
||||||
|
|
||||||
|
ADD run_love.sh /love
|
||||||
|
|
||||||
|
CMD /bin/bash run_love.sh
|
5
run_love.sh
Normal file
5
run_love.sh
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cp /love/love.bin /data/love.bin
|
||||||
|
cd /data
|
||||||
|
wine /love/LOVE_server.exe
|
Loading…
Reference in a new issue