-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding Python 3.10 dockerfiles * Updating github check action versions --------- Co-authored-by: GitHub Actions <[email protected]>
- Loading branch information
1 parent
2c704c4
commit cacd07e
Showing
3 changed files
with
21 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM linuxbrew/brew:latest | ||
|
||
RUN brew install groff | ||
RUN brew install libyaml | ||
RUN brew install [email protected] | ||
|
||
RUN brew install zip | ||
RUN brew install awscli | ||
|
||
RUN brew tap aws/tap | ||
RUN brew install aws-sam-cli |
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,8 @@ | ||
FROM nsidc/aws-sam-cli-build-image-python3.10:latest | ||
|
||
RUN curl -sSL https://install.python-poetry.org | python3 - | ||
ENV PATH "$PATH:/root/.local/bin" | ||
|
||
COPY sam_build.sh /sam_build.sh | ||
|
||
CMD /sam_build.sh |