fix(Dockerfile): chmod octal notation for Docker

This commit is contained in:
jon r 2025-02-27 01:59:49 +01:00
parent 235c415205
commit d3ade6c076
2 changed files with 2 additions and 2 deletions

View File

@ -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 \

View File

@ -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 \