mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
9 lines
225 B
Plaintext
9 lines
225 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# This is needed to pass build ARGs to Dockerfile.
|
||
|
# see https://docs.docker.com/docker-hub/builds/advanced/
|
||
|
|
||
|
DOCKER_FLAGS="-t $IMAGE_NAME" \
|
||
|
GIT_TAG=$(git describe --tags '--match=v*' --dirty) \
|
||
|
make docker
|