Skip to content

Commit

Permalink
Merge pull request #98 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 2.3.6 Update to Node 18 and Python 3
  • Loading branch information
Baggerone authored Nov 22, 2022
2 parents 0aa53ac + 9ed8e2d commit 7f963b1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions recovery/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
FROM node:16
FROM node:18

RUN apt-get update && \
apt-get install -y python3 && \
apt-get install -y python3-venv

RUN ln -s /usr/bin/python3 /usr/bin/python

# Install the AWS CLI
RUN curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
RUN unzip awscli-bundle.zip
RUN ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws

# Install the Serverless Framework
RUN npm install -g serverless@3
RUN npm install -g serverless@3 && echo "aws version: " && aws --version

0 comments on commit 7f963b1

Please sign in to comment.