This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* sketch of v5 * fix test * fix test 2 * add deployement bucket * fix packaging * fix packaging * add porj_lib env * update * fix ci
- Loading branch information
1 parent
f793b2e
commit c98ec80
Showing
20 changed files
with
242 additions
and
138 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
FROM remotepixel/amazonlinux-gdal:2.4.2 | ||
FROM remotepixel/amazonlinux:gdal3.0-py3.7 | ||
|
||
# Install dependencies | ||
RUN pip3 install pip -U | ||
RUN pip3 install cython==0.28 | ||
WORKDIR /tmp | ||
|
||
ENV PACKAGE_TMP /tmp/package | ||
ENV PACKAGE_PREFIX /tmp/python | ||
|
||
COPY setup.py setup.py | ||
COPY remotepixel_tiler/ remotepixel_tiler/ | ||
|
||
RUN CFLAGS="--std=c99" pip3 install . --no-binary numpy,rasterio -t $PACKAGE_TMP -U | ||
# Install dependencies | ||
RUN pip3 install . --no-binary numpy,rasterio -t $PACKAGE_PREFIX -U |
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
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,4 +1,5 @@ | ||
"""Remotepixel tiler.""" | ||
# app | ||
|
||
__version__ = "4.1.1" | ||
import pkg_resources | ||
|
||
version = pkg_resources.get_distribution(__package__).version |
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
Oops, something went wrong.