From 5bac74cd6ce37f6f140919abbab43fba843c0a23 Mon Sep 17 00:00:00 2001 From: James Mills <1290234+prologic@users.noreply.github.com> Date: Sat, 1 Apr 2023 12:13:39 +1000 Subject: [PATCH] Fix Docker image build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3a1085e..c909a28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ WORKDIR /src # Copy content COPY . . -# Build the site -RUN zs build +# Build the site (in production mode) +RUN zs -p build # Runtime FROM prologic/zs AS runtime