Remove Docker entrypoint fully

This commit is contained in:
Franck Nijhof
2021-01-13 01:50:26 +01:00
parent 1c1eda7b91
commit 6c047ab3a6
+2 -1
View File
@@ -92,11 +92,12 @@ runs:
shell: bash
run: |
docker run --rm \
--entrypoint "" \
"homeassistant/home-assistant:${{ steps.version.outputs.version }}" \
python -m homeassistant --version
docker run --rm \
--entrypoint /bin/bash \
--entrypoint "" \
-v $(pwd):/github/workspace \
--workdir /github/workspace \
"homeassistant/home-assistant:${{ steps.version.outputs.version }}" \