fix(Dockerfile): chmod octal notation for Docker
This commit is contained in:
parent
235c415205
commit
d3ade6c076
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue