Merge pull request #97 from DDS-Derek/main

This commit is contained in:
jxxghp 2023-08-12 22:29:35 +08:00 committed by GitHub
commit f82a4a9ef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@ RUN apt-get update \
wget \
curl \
busybox \
dumb-init \
&& \
if [ "$(uname -m)" = "x86_64" ]; \
then ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1; \

View File

@ -20,4 +20,4 @@ nginx
# 设置后端服务权限掩码
umask ${UMASK}
# 启动后端服务
exec gosu moviepilot:moviepilot python3 app/main.py
exec dumb-init gosu moviepilot:moviepilot python3 app/main.py