From 9986bb877ccd5628bc7842659d8244d56f126f94 Mon Sep 17 00:00:00 2001
From: Aaron Hance <ah@aaronhance.me>
Date: Sun, 20 Jun 2021 21:06:25 +0100
Subject: [PATCH] Real Update to compose file, fixed line endings issue

---
 Dockerfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 14ad3ec2..c9c8befb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,7 @@ 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 install nasm curl make:i386 binutils:i386 xorriso grub-pc-bin dos2unix -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
@@ -15,4 +15,5 @@ RUN ./install.sh
 COPY compile.sh /compile.sh
 RUN mkdir /code
 WORKDIR /code
-ENTRYPOINT ["/compile.sh"]
\ No newline at end of file
+RUN find . -type f -print0 | xargs -0 dos2unix
+ENTRYPOINT ["/bin/bash", "/compile.sh"]
\ No newline at end of file