diff --git a/Dockerfile b/Dockerfile index d76205f..8c62792 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,4 +17,7 @@ RUN mkdir /training && pip3 install precise-lite WORKDIR /training COPY scripts/precise-lite-convert-h5 /usr/local/bin/precise-lite-convert-h5 -COPY scripts/convert_h5.py /usr/local/lib/python3.6/dist-packages/precise_lite/scripts/convert_h5.py \ No newline at end of file +COPY scripts/convert_h5.py /usr/local/lib/python3.6/dist-packages/precise_lite/scripts/convert_h5.py +COPY entrypoint.sh /entrypoint.sh + +ENTRYPOINT "/entrypoint.sh" \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 0000000..5ae1c70 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +exec "$@" \ No newline at end of file