13 lines
265 B
Bash
13 lines
265 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
python3 -m venv build_venv
|
|
source build_venv/bin/activate
|
|
python3 -m pip install --upgrade pip
|
|
|
|
#pip install dvc
|
|
#pip install 'dvc[ssh]'
|
|
#dvc pull
|
|
|
|
docker build -f Dockerfile_base -t cv-analysis-base .
|
|
docker build -f Dockerfile -t cv-analysis . |