From b45e8da6394283b65d42f7b3fddefde16f92520a Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 15 Sep 2025 13:11:23 +0200 Subject: [PATCH] Restore ENTRYPOINT and CMD in Dockerfile Re-enable ENTRYPOINT and CMD for the Docker container. --- guacamole/Dockerfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/guacamole/Dockerfile b/guacamole/Dockerfile index 9c6169627..c138525fd 100644 --- a/guacamole/Dockerfile +++ b/guacamole/Dockerfile @@ -103,14 +103,15 @@ RUN sed -i 's|with-contenv|env|g' "/ha_entrypoint.sh" RUN chmod 777 /ha_entrypoint.sh /ha_entrypoint_modif.sh && /ha_entrypoint_modif.sh && rm /ha_entrypoint_modif.sh # Standalone bashio command -ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/.bashio-standalone.sh" -RUN chmod 777 /.bashio-standalone.sh -RUN sed -i "s|/usr/bin/with-contenv|/usr/bin/env|g" /etc/cont-init.d/* && \ - sed -i "s|/usr/bin/with-contenv|/usr/bin/env|g" /etc/services.d/*/run +#ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/bashio-standalone.sh" "/.bashio-standalone.sh" +#RUN chmod 777 /.bashio-standalone.sh +#RUN sed -i "s|/usr/bin/with-contenv|/usr/bin/env|g" /etc/cont-init.d/* && \ +# sed -i "s|/usr/bin/with-contenv|/usr/bin/env|g" /etc/services.d/*/run && \ +# sed -i "s|/usr/bin/with-contenv|/usr/bin/env|g" /etc/services.d/*/run #WORKDIR /data -#ENTRYPOINT [ "/usr/bin/env" ] -#CMD [ "/ha_entrypoint.sh" ] +ENTRYPOINT [ "/usr/bin/env" ] +CMD [ "/ha_entrypoint.sh" ] ############ # 5 Labels #