-
Notifications
You must be signed in to change notification settings - Fork 0
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 #48 from podaac/release/0.9.0
Release 0.9.0
- Loading branch information
Showing
17 changed files
with
904 additions
and
743 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ARG FUNCTION_DIR="/function" | ||
|
||
FROM public.ecr.aws/lambda/python:3.10-arm64 | ||
|
||
# Include global arg in this stage of the build | ||
ARG SOURCE | ||
|
||
RUN yum -q -y install gcc | ||
|
||
# Create function directory | ||
# RUN mkdir -p ${FUNCTION_DIR} | ||
# WORKDIR ${FUNCTION_DIR} | ||
|
||
# Install tig from artifactory | ||
COPY $DIST_PATH $DIST_PATH | ||
|
||
# install tig into working directory so we can call lambda | ||
RUN pip3 install awslambdaric --target $LAMBDA_TASK_ROOT | ||
|
||
RUN pip3 install --no-cache-dir --force --index-url https://pypi.org/simple/ --extra-index-url https://test.pypi.org/simple/ --target "${LAMBDA_TASK_ROOT}" $SOURCE | ||
|
||
RUN rm -rf $DIST_PATH | ||
|
||
ENTRYPOINT [] | ||
CMD ["podaac.lambda_handler.lambda_handler.handler"] |
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,3 +1,3 @@ | ||
variable,min,max | ||
data_01/ku/ssha,-0.2,0.2 | ||
data_01/ku/swh_ocean,0,30 | ||
variable,min,max,palette,fill_missing,ppd | ||
data_01/ku/ssha,-0.2,0.2,paletteMedspirationIndexed,TRUE,20 | ||
data_01/ku/swh_ocean,0,30,palette_AQUARIUS,FALSE,15 |
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.