Fix nginx can not run without /run/nginx

Fix nginx can not run without /run/nginx
This commit is contained in:
phoenix 2021-11-23 09:22:48 +08:00 committed by GitHub
parent 5dd8d9df91
commit eca5935d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,5 +47,6 @@ RUN set -x \
&& rm -rf /root/.pnpm-store \
&& git clone -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static \
&& cp -rf /static/* ${QL_DIR} \
&& rm -rf /static
&& rm -rf /static \
&& mkdir -p /run/nginx
ENTRYPOINT ["./docker/docker-entrypoint.sh"]