-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from asfadmin/release/1.1.0
Release/1.1.0
- Loading branch information
Showing
98 changed files
with
2,173 additions
and
6,765 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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
example | ||
test | ||
tests | ||
.pytest_cache | ||
.git | ||
spec | ||
**/*.log | ||
**/tmp |
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 @@ | ||
tests/data/granules/** filter=lfs diff=lfs merge=lfs -text |
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 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 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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
From osgeo/gdal:ubuntu-full-3.2.0 | ||
FROM osgeo/gdal:ubuntu-full-3.3.1 | ||
|
||
RUN ln -sf /usr/bin/python3 /usr/bin/python && apt-get update && apt-get install -y python3-pip nco && pip3 install boto3 | ||
RUN ln -sf /usr/bin/python3 /usr/bin/python \ | ||
&& apt-get update \ | ||
&& apt-get install -y python3-pip nco \ | ||
&& pip3 --no-cache-dir install boto3 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR "/home" | ||
|
||
# Bundle app source | ||
COPY . . | ||
RUN pip3 install deps/harmony-service-lib-py | ||
RUN pip3 install -r requirements.txt | ||
RUN pip3 install --no-cache-dir -r requirements.txt | ||
|
||
# To run locally during dev, build the image and run, e.g.: | ||
# docker run --rm -it -e ENV=dev -v $(pwd):/home harmony/gdal --harmony-action invoke --harmony-input "$(cat ../harmony/example/service-operation.json)" | ||
# Or if also working on harmony-service-lib-py in a peered directory: | ||
# docker run --rm -it -e ENV=dev -v $(pwd):/home -v $(dirname $(pwd))/harmony-service-lib-py:/home/deps/harmony harmony/gdal --harmony-action invoke --harmony-input "$(cat ../harmony/example/service-operation.json)" | ||
ENTRYPOINT ["python3", "-m", "gdal_subsetter"] |
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
Oops, something went wrong.