Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docker/coexecutor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ docker-image:
cd ../..; make dist; cp dist/pulsar*whl docker/coexecutor

all: docker-image
re='pulsar_app-([0-9]+.[0-9]+.[0-9]+).dev0-py2.py3-none-any.whl'
f='$(shell ls -1a | egrep '$(re)')'
version=$(shell if [[ $(f) =~ $(re) ]]; then echo "v${BASH_REMATCH[1]}"; else echo "unknown_version"; fi)
docker build -t 'galaxy/pulsar-pod-staging:0.1' .