diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 12:53:17 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 12:53:17 -0400 |
commit | 2c2bbef9d0ea66032caca6c85997fbeb84f78097 (patch) | |
tree | e634a193675f764277d41f711e455f05cce8682f /.github | |
parent | 89d61e879391562c6fffaa09f786eed53a6a6cc3 (diff) |
Fix path to entrypoint.sh.
Diffstat (limited to '.github')
-rw-r--r-- | .github/actions/zephyr-west/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/actions/zephyr-west/Dockerfile b/.github/actions/zephyr-west/Dockerfile index 73bba4e..00c4238 100644 --- a/.github/actions/zephyr-west/Dockerfile +++ b/.github/actions/zephyr-west/Dockerfile @@ -54,7 +54,7 @@ RUN wget -q https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/s ENV ZEPHYR_TOOLCHAIN_VARIANT=zephyr ENV ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-${ZSDK_VERSION} -COPY ./entrypoint.sh ./ -RUN chmod +x ./entrypoint.sh +COPY ./entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh -ENTRYPOINT ["./entrypoint.sh"] +ENTRYPOINT ["/entrypoint.sh"] |