fix dockerfile

This commit is contained in:
jxxghp 2023-06-11 10:02:01 +08:00
parent 60e65afd50
commit 4329b5c880

View File

@ -41,7 +41,8 @@ RUN apt-get update \
&& echo "${WORKDIR}/" > /usr/local/lib/python${python_ver%.*}/site-packages/app.pth \
&& echo 'fs.inotify.max_user_watches=5242880' >> /etc/sysctl.conf \
&& echo 'fs.inotify.max_user_instances=5242880' >> /etc/sysctl.conf \
&& rm -rf /root/.cache/
&& rm -rf /root/.cache/ \
&& chmod +x "${WORKDIR}/start.sh"
EXPOSE 3001
VOLUME ["/config"]
ENTRYPOINT [ "/MoviePilot/start.sh" ]