diff options
| author | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 12:49:02 -0400 |
|---|---|---|
| committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 12:49:02 -0400 |
| commit | 89d61e879391562c6fffaa09f786eed53a6a6cc3 (patch) | |
| tree | 2f05983851a3a70c2c8c605bbe87de8c739eb0b0 /.github/actions/zephyr-west/Dockerfile | |
| parent | d77df5a27ac837aee434709f610c4fff7e7c7f92 (diff) | |
Try using an entrypoint script for args.
Diffstat (limited to '.github/actions/zephyr-west/Dockerfile')
| -rw-r--r-- | .github/actions/zephyr-west/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/actions/zephyr-west/Dockerfile b/.github/actions/zephyr-west/Dockerfile index 687ba1e..73bba4e 100644 --- a/.github/actions/zephyr-west/Dockerfile +++ b/.github/actions/zephyr-west/Dockerfile @@ -54,4 +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} -ENTRYPOINT ["west"] +COPY ./entrypoint.sh ./ +RUN chmod +x ./entrypoint.sh + +ENTRYPOINT ["./entrypoint.sh"] |
