-
Notifications
You must be signed in to change notification settings - Fork 6
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 #235 from raphaelrpl/b-0.8
Fix bugs related with 0.8.0; Landsat publish and setup dependencies (…
- Loading branch information
Showing
7 changed files
with
22 additions
and
14 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
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
""" | ||
|
||
|
||
__version__ = '0.8.0' | ||
__version__ = '0.8.1' |
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,18 +1,17 @@ | ||
FROM registry.dpi.inpe.br/brazildatacube/geo:0.2 | ||
FROM osgeo/gdal:ubuntu-full-3.2.1 | ||
|
||
ENV LC_ALL C.UTF-8 | ||
ENV LANG C.UTF-8 | ||
|
||
ADD . /app | ||
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && \ | ||
apt-get install --yes nano && \ | ||
apt-get install --yes nano python3-pip git pkg-config cmake libtool autoconf && \ | ||
pip3 install pip --upgrade && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
ADD . /app | ||
|
||
WORKDIR /app | ||
|
||
RUN pip install wheel && \ | ||
pip install gdal==2.4.0 && \ | ||
pip install pymodis && \ | ||
pip install -e .[all] |
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