mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 03:47:59 +00:00
a166eb3291
* Fix the url of the fetched file * Fix binary in the GPG check * Add docker build * Import GPG pub keys * Copy missing binaries * Checkout first * Add missing mkdir * Set bin as executable * Fix exec flag earlier * Fix docker calls * Fix version parsing * Fix image names * Cleanup * Fix ENV issue * Only allow user keys on pre-releases * Add Docker Hub token and enable pushing * Make Docker owner configurable via secrets * Fix owner * Remove duplicate secret
7 lines
236 B
Bash
Executable File
7 lines
236 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
OWNER=${OWNER:-parity}
|
|
IMAGE_NAME=${IMAGE_NAME:-polkadot-collator}
|
|
docker build --no-cache --build-arg IMAGE_NAME=$IMAGE_NAME -t $OWNER/$IMAGE_NAME -f ./docker/injected.Dockerfile .
|
|
docker images | grep $IMAGE_NAME
|