Merge branch 'fix-dockerfile-perms' into 'develop'

Fix config ownership in dockerfile to pass restriction test

See merge request pleroma/pleroma!3931
This commit is contained in:
tusooa 2023-08-10 00:42:29 +00:00
commit b729a8b140
2 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,7 @@ USER pleroma
COPY --from=build --chown=pleroma:0 /release ${HOME}
COPY ./config/docker.exs /etc/pleroma/config.exs
COPY --chown=pleroma --chmod=640 ./config/docker.exs /etc/pleroma/config.exs
COPY ./docker-entrypoint.sh ${HOME}
EXPOSE 4000

View File

@ -0,0 +1 @@
- Fix config ownership in dockerfile to pass restriction test