-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump up the version; update Dockerfile with ISCE3 build * revise script to build Docker; revise Dockerfile with ISCE3 build; update s1reader version * add `.pre-commit-config.yaml` --------- Co-authored-by: Seongsu Jeong <[email protected]>
- Loading branch information
1 parent
c9ca4ef
commit 16a3c1d
Showing
5 changed files
with
31 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-added-large-files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#! /bin/bash | ||
|
||
REPO=opera | ||
IMAGE=cslc_s1 | ||
TAG=final_0.5.5 | ||
|
||
echo "IMAGE is $REPO/$IMAGE:$TAG" | ||
|
||
rm docker/dockerimg_cslc_s1_${TAG}.tar | ||
|
||
# fail on any non-zero exit codes | ||
set -ex | ||
|
||
docker build --rm --force-rm --network host -t $REPO/$IMAGE:$TAG -f docker/Dockerfile.isce3_builder . | ||
|
||
docker save $REPO/$IMAGE:$TAG > docker/dockerimg_cslc_s1_${TAG}.tar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters