Fixed script not being serveable
continuous-integration/drone the build was successful Details

master
Jef Roosens 2021-07-19 21:27:47 +02:00
parent e6b4f34f0b
commit 4fdf8c9207
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
1 changed files with 2 additions and 1 deletions

View File

@ -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====