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

Update amazon/dynamodb-local Docker tag to v2.5.3 #296

Merged
merged 1 commit into from
Dec 12, 2024
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
4 changes: 2 additions & 2 deletions dynamo.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DB_LOCATION=/home/dynamodblocal/db
FROM amazon/dynamodb-local:2.5.2 AS install
FROM amazon/dynamodb-local:2.5.3 AS install

USER root
RUN yum -y install awscli
Expand All @@ -24,7 +24,7 @@ RUN mkdir -p ${DB_LOCATION} && \
--endpoint-url http://localhost:8000 && \
kill $DYNAMO_PID

FROM amazon/dynamodb-local:2.5.2
FROM amazon/dynamodb-local:2.5.3

ARG DB_LOCATION
COPY --chown=dynamodblocal:dynamodblocal --from=install ${DB_LOCATION} /db
Expand Down
Loading