1
0
Fork 0
mirror of https://codeberg.org/spire/spcomp.git synced 2026-06-03 16:44:08 +02:00

initial version

This commit is contained in:
Robin Appelman 2016-12-03 17:30:49 +01:00
commit 74cbe3f450
3 changed files with 47 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
from ioft/i386-ubuntu
maintainer Robin Appelman <robin@icewind.nl>
ADD ./install.sh /install.sh
RUN mkdir /data \
&& apt-get update \
&& apt-get install -y wget unzip \
&& rm -rf /var/lib/apt/lists/*
RUN /install.sh
WORKDIR /data
ENTRYPOINT ["/scripting/spcomp"]