mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 00:58:02 +00:00
640f5ad5c1
* exclude polkadot-parachain .asc and .sha256 from .dockerignore * refactor docker image creation GHA * add debug * try without quotes * test action * add quotes * fix quotes atumated image publishing GHA * delete old unused part --------- Co-authored-by: Chevdor <chevdor@users.noreply.github.com>
10 lines
245 B
Bash
Executable File
10 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
OWNER=${OWNER:-parity}
|
|
IMAGE_NAME=${IMAGE_NAME:-polkadot-parachain}
|
|
docker build --no-cache \
|
|
--build-arg IMAGE_NAME=$IMAGE_NAME \
|
|
-t $OWNER/$IMAGE_NAME \
|
|
-f ./docker/injected.Dockerfile \
|
|
. && docker images
|