Merge in RR/fb-detr from refactor-build to master
Squashed commit of the following:
commit 96d272ecfaf94b88ade5dd64fce662832ec44684
Author: Julius Unverfehrt <Julius.Unverfehrt@iqser.com>
Date: Mon Feb 21 16:31:31 2022 +0100
adjusted build scripts for repo rename
16 lines
296 B
Bash
Executable File
16 lines
296 B
Bash
Executable File
#!/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
|
|
|
|
git submodule update --init --recursive
|
|
|
|
docker build -f Dockerfile_base -t fb-detr-base .
|
|
docker build -f Dockerfile -t fb-detr .
|