From 9473e26b50e16e345aeb4ced00f7befccf82838f Mon Sep 17 00:00:00 2001 From: Kieron Morris Date: Sun, 9 Mar 2025 17:42:06 +0000 Subject: [PATCH] Dockerfile corrections - /code already exists, don't create it in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a366a1a9..87091a6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN curl -sL https://sourceforge.net/projects/freepascal/files/Linux/$FPC_VERSIO COPY compile.sh /compile.sh ADD https://raw.githubusercontent.com/fsaintjacques/semver-tool/master/src/semver /usr/bin/semver -RUN mkdir /code && chmod +x /usr/bin/semver +RUN chmod +x /usr/bin/semver WORKDIR /code RUN find . -type f -print0 | xargs -0 dos2unix ENTRYPOINT ["/bin/bash", "-c"]