Skip to content

Commit

Permalink
Adding Python 3.10 dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Aug 29, 2024
1 parent 2c704c4 commit 3f66bd1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile.aws-sam-cli-build-image-python3.10
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
8 changes: 8 additions & 0 deletions Dockerfile.py310
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

0 comments on commit 3f66bd1

Please sign in to comment.