From bf7dd712e1f0013b4d9d501c64fcc10af4d7f104 Mon Sep 17 00:00:00 2001 From: TheFrenchGhosty Date: Sun, 12 Mar 2023 14:52:47 +0100 Subject: [PATCH] Remove the mkdir because it's not needed anymore --- docker/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1693794..22d1784 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,6 @@ RUN apt update -y && apt upgrade -y \ && rm -rf /var/lib/apt/lists/* \ && git clone --depth=1 https://gitdab.com/cadence/breezewiki.git . \ && raco pkg install --batch --auto --no-docs --skip-installed req-lib \ - && raco req -d \ - && mkdir /app/storage + && raco req -d EXPOSE 10416 CMD ["racket", "dist.rkt"]