From 483a0ac2928bfeb5d8c7dd09a822a3751c145099 Mon Sep 17 00:00:00 2001 From: Hamcha Date: Fri, 20 Mar 2020 12:33:19 +0100 Subject: [PATCH] First commit --- Dockerfile | 16 ++++++++++++++++ run_love.sh | 5 +++++ 2 files changed, 21 insertions(+) create mode 100644 Dockerfile create mode 100644 run_love.sh 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