mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
this way we reuse all the thinking we did when getting the Python wheels in order. * what to include/exclude * setting up the scripts
9 lines
207 B
Bash
Executable File
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 .
|