5 lines
179 B
Plaintext
5 lines
179 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Build hook to run on Docker Hub to ensure that the image is built with `PORTABLE=true`.
|
||
|
docker build --build-arg PORTABLE=true -f $DOCKERFILE_PATH -t $IMAGE_NAME .
|