From 4fdf8c9207a136ecd868489b40e1c410f80ec290 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Mon, 19 Jul 2021 21:27:47 +0200 Subject: [PATCH] Fixed script not being serveable --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e3ad4fa..648f53c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,8 @@ WORKDIR /usr/src/app COPY . ./ # Generate the site -RUN hugo --minify +RUN hugo --minify && \ + find public -type f -exec chmod 644 {} \; # ====CREATE RELEASE IMAGE====