mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 23:23:20 +03:00
11 lines
228 B
Plaintext
11 lines
228 B
Plaintext
#export VERSION=$(grep '^version' ../../packages/hurl/Cargo.toml | cut -f2 -d'"')
|
|
export VERSION=1.4.0
|
|
|
|
# Build image
|
|
docker build . -t hurl:$VERSION --build-arg VERSION=$VERSION
|
|
|
|
# Run
|
|
docker run hurl:$VERSION hurl --version
|
|
|
|
|