12 lines
256 B
Plaintext
12 lines
256 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
KAZ_ROOT=$(cd "$(dirname $0)/../.."; pwd)
|
||
|
. "${KAZ_ROOT}/bin/.commonFunctions.sh"
|
||
|
setKazVars
|
||
|
|
||
|
printKazMsg "\n *** Création du Dockerfile translucid"
|
||
|
|
||
|
cd "${KAZ_ROOT}"
|
||
|
|
||
|
docker build --no-cache -t translucid . -f dockers/translucid/Dockerfile
|