Files
bugsink/builddocker.bash
Klaas van Schelven f20104770e Docker from wheel, not sourcecode
this way we reuse all the thinking we did when getting the Python wheels in order.
* what to include/exclude
* setting up the scripts
2024-08-27 09:48:39 +02:00

9 lines
207 B
Bash
Executable File

#!/bin/bash
set -e
WHEEL_FILE=$(ls dist/ -1atr | grep bugsink | grep whl | tail -n1)
echo "Building docker image with wheel file: $WHEEL_FILE"
docker build --build-arg WHEEL_FILE=$WHEEL_FILE -t bugsink .