diff --git a/images/custom/Containerfile b/images/custom/Containerfile index fabe02c3..d98c29c4 100644 --- a/images/custom/Containerfile +++ b/images/custom/Containerfile @@ -76,7 +76,7 @@ RUN useradd -ms /bin/bash frappe \ && mkdir -p /etc/nginx/snippets \ && pip3 install frappe-bench \ # Install pycups - && if [ "$INSTALL_PYCUPS" != "false" ]; then /home/frappe/frappe-bench/env/bin/pip install --no-cache-dir pycups; fi \ + && if [ "$INSTALL_PYCUPS" != "false" ]; then pip install --no-cache-dir pycups; fi \ # Fixes for non-root nginx and logs to stdout && sed -i '/user www-data/d' /etc/nginx/nginx.conf \ && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log \