Skip to content
Open
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:3.1.0 AS install
FROM amazon/dynamodb-local:3.3.0 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:3.1.0
FROM amazon/dynamodb-local:3.3.0

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