Asuro/Dockerfile
Kieron Morris bd9fbd2da6 Added lots of stuff
Added stuff to vfs + Dockerized the compilation & added some vscode cfg.
2021-06-20 02:49:56 +01:00

18 lines
468 B
Docker

FROM ubuntu:latest
VOLUME ["/code"]
RUN dpkg --add-architecture i386 && \
apt-get update
RUN apt-get install nasm curl make:i386 binutils:i386 xorriso grub-pc-bin -y
RUN apt-get clean
RUN curl https://sourceforge.net/projects/freepascal/files/Linux/2.6.4/fpc-2.6.4.i386-linux.tar/download --output fpc.tar -L && \
tar -xf fpc.tar
WORKDIR ./fpc-2.6.4.i386-linux
RUN ./install.sh
COPY compile.sh /compile.sh
RUN mkdir /code
WORKDIR /code
ENTRYPOINT ["/compile.sh"]