diff --git a/api/Dockerfile.alpine b/api/Dockerfile.alpine index 7b08b651d..29d8e15a3 100644 --- a/api/Dockerfile.alpine +++ b/api/Dockerfile.alpine @@ -133,7 +133,7 @@ RUN --mount=type=cache,target=~/.cache/pip; \ set -eux; \ pip3 install --no-deps --editable . -ADD --chown=0:0 --chmod=u+x ./entrypoint.sh / +ADD --chown=0:0 --chmod=0755 ./entrypoint.sh / ENTRYPOINT [ "/entrypoint.sh" ] HEALTHCHECK --start-period=60s --interval=10s --timeout=5s --retries=3 \ diff --git a/api/Dockerfile.debian b/api/Dockerfile.debian index 4b3a561c2..3e8c6d28a 100644 --- a/api/Dockerfile.debian +++ b/api/Dockerfile.debian @@ -69,7 +69,7 @@ WORKDIR /app COPY . /app RUN poetry install --extras typesense -ADD --chown=0:0 --chmod=u+x ./entrypoint.sh / +ADD --chown=0:0 --chmod=0755 ./entrypoint.sh / ENTRYPOINT [ "/entrypoint.sh" ] HEALTHCHECK --start-period=60s --interval=10s --timeout=5s --retries=3 \