build.sh 346 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

repo=gitlab-master.nvidia.com:5005/tkurth/era5_wind
#tag=latest
#tag=debug
tag=jaideep_legacy_dataloader

cd ../

# build
docker build -t ${repo}:${tag} -f docker/Dockerfile .

# push
docker push ${repo}:${tag}

# retag and repush
#docker tag ${repo}:${tag} thorstenkurth/era5-wind:${tag}
#docker push thorstenkurth/era5-wind:${tag}