diff --git a/Dockerfile-for-github-action b/Dockerfile-for-github-action index c200ce8..940c44b 100644 --- a/Dockerfile-for-github-action +++ b/Dockerfile-for-github-action @@ -21,7 +21,7 @@ RUN apt-get --allow-releaseinfo-change update \ RUN cd /tmp \ && python3 -m pip install --upgrade pip -COPY <<-"EOT" targetarch.sh +COPY <<-EOT ./targetarch.sh if ["$TARGETARCH" = "arm"]; then \ cd /tmp \ && curl -O -L https://github.com/nknytk/built-onnxruntime-for-raspberrypi-linux/blob/master/wheels/bullseye/onnxruntime-1.16.0-cp39-cp39-linux_armv7l.whl \ @@ -35,7 +35,7 @@ COPY <<-"EOT" targetarch.sh fi EOT -ENTRYPOINT targetarch.sh +ENTRYPOINT bash ./targetarch.sh RUN cd /tmp \ && PIP_ROOT_USER_ACTION=ignore pip install \