Fix bug caused by bad permissions and files

This commit is contained in:
Emil Dabrowski 2022-12-03 22:30:57 +01:00
parent 3ebb9dda35
commit 4fcaddb2e3
2 changed files with 7 additions and 4 deletions

View File

@ -10,8 +10,9 @@ RUN adduser \
--gecos "" \
--uid 1000 \
hugo
RUN chown hugo:hugo /app
USER hugo
CMD hugo server --bind 0.0.0.0
COPY . /app
RUN chown -R hugo:hugo /app
USER hugo
CMD hugo server --bind 0.0.0.0

View File

@ -1,6 +1,6 @@
#!/bin/bash
version="0.2.0"
version="0.2.1"
script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
tmp_dir="$(mktemp -d --suffix=-web)"
cleanup () { rm -Rfv "$tmp_dir"; }
@ -22,4 +22,6 @@ if [[ "$latest_theme_tag_name" != "$previous_theme_tag_name" ]]; then
echo "$latest_theme_release_metadata" >"$release_json"
fi
rm -R resources .hugo_build.lock
docker build "$script_dir" -f Containerfile -t jilits/website:latest -t jilits/website:$version -t cr.jilits.se/jilits/website:$version