18 lines
378 B
Bash
Executable File
18 lines
378 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
echo $DIR
|
|
|
|
if [[ $1 == 'pro' || $1 == 'dev' ]]; then
|
|
# Copy requirements.txt into pro folder
|
|
cp ../requirements.txt $1/requirements.txt
|
|
# Build image
|
|
docker build -t armadillica/pillar_$1 $1
|
|
# Remove requirements.txt
|
|
rm $1/requirements.txt
|
|
|
|
else
|
|
echo "POS. Your options are 'pro' or 'dev'"
|
|
fi
|