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

make it easier to add include files and move output to a different directory

This commit is contained in:
Robin Appelman 2017-10-16 00:53:46 +02:00
commit a954f6cda2
4 changed files with 25 additions and 5 deletions

View file

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