Files
home-llm/scripts/run_docker_to_make_wheels.sh
2024-06-09 17:51:54 -04:00

15 lines
409 B
Bash
Executable File

#!/bin/bash
VERSION_TO_BUILD="v0.2.77"
# make python11 wheels
# docker run -it --rm \
# --entrypoint bash \
# -v $(pwd):/tmp/dist \
# homeassistant/home-assistant:2023.12.4 /tmp/dist/make_wheel.sh $VERSION_TO_BUILD
# make python 12 wheels
docker run -it --rm \
--entrypoint bash \
-v $(pwd):/tmp/dist \
homeassistant/home-assistant:2024.2.1 /tmp/dist/make_wheel.sh $VERSION_TO_BUILD