commit 483a0ac2928bfeb5d8c7dd09a822a3751c145099 Author: Hamcha Date: Fri Mar 20 12:33:19 2020 +0100 First commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7b36933 --- /dev/null +++ b/Dockerfile @@ -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 \ No newline at end of file diff --git a/run_love.sh b/run_love.sh new file mode 100644 index 0000000..fbfec07 --- /dev/null +++ b/run_love.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +cp /love/love.bin /data/love.bin +cd /data +wine /love/LOVE_server.exe \ No newline at end of file