Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade python image #471

Merged
merged 2 commits into from
Sep 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions aws/load_testing/lambda/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM amazon/aws-lambda-python:3.7@sha256:4aead3a75aa0c0b63a493bb8c5417ee0f1a166cde60e9c49f382817761ea827e

FROM amazon/aws-lambda-python:3.11@sha256:93f1bd317ac630ad7fac3e5acd782697a6c1c0a461b2cb254e205328fd27ca53
COPY lambda_locust.py .
COPY tests ./tests
COPY requirements.txt .

RUN yum -y groupinstall "Development Tools"

RUN pip3 install --upgrade pip

RUN pip3 install -r requirements.txt
Expand Down
Loading