mirror of
https://github.com/sudoxnym/exiles-ankerctl-hassio-addons.git
synced 2026-04-14 11:36:23 +00:00
Avoid --chmod=755 in Dockerfile.
It seems `--chmod` is only support with a docker add-on. This causes home assistant to give this error: ``` Failed to install add-on the --chmod option requires BuildKit. Refer to https://docs.docker.com/go/buildkit/ to learn how to build images with BuildKit enabled ``` Since we are calling `sh` as the `ENTRYPOINT`, it doesn't need to be +x anyway.
This commit is contained in:
parent
7c2d321ae1
commit
426c8d1d1d
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ FROM $BUILD_FROM
|
|||
ARG CONFIG_PATH='/data/options.json'
|
||||
|
||||
# Add run.sh
|
||||
COPY --chmod=755 data/run.sh /
|
||||
COPY data/run.sh /
|
||||
|
||||
# Set S6 wait time
|
||||
ENV S6_CMD_WAIT_FOR_SERVICES=1 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue