feat: fix permission problem in standard image (#3228)

This commit is contained in:
DacongDA 2024-09-23 18:40:39 +08:00 committed by GitHub
parent db878a890e
commit 6464bd10dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,7 @@ COPY --from=BACK --chown=$USER:$USER /go/src/casdoor/conf/app.conf ./conf/app.co
COPY --from=BACK --chown=$USER:$USER /go/src/casdoor/version_info.txt ./go/src/casdoor/version_info.txt
COPY --from=FRONT --chown=$USER:$USER /web/build ./web/build
ENTRYPOINT ["/server"]
ENTRYPOINT ["sudo","/server"]
FROM debian:latest AS db