Fixed script not being serveable
All checks were successful
continuous-integration/drone the build was successful

This commit is contained in:
Jef Roosens 2021-07-19 21:27:47 +02:00
parent e6b4f34f0b
commit 4fdf8c9207
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F

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