We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51ac4bc commit 5edb16fCopy full SHA for 5edb16f
docker/Dockerfile
@@ -46,6 +46,11 @@ RUN rm -rf /etc/services.d/frontend /etc/nginx/conf.d/dev.conf
46
# Change permission of logrotate config file
47
RUN chmod 644 /etc/logrotate.d/nginx-proxy-manager
48
49
+# fix for pip installs
50
+# https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1769
51
+RUN pip uninstall --yes setuptools \
52
+ && pip install "setuptools==58.0.0"
53
+
54
VOLUME [ "/data", "/etc/letsencrypt" ]
55
ENTRYPOINT [ "/init" ]
56
0 commit comments