Docker-DynamoDB/Dockerfile

13 lines
586 B
Text
Raw Permalink Normal View History

2024-05-17 09:19:40 +00:00
# checkov:skip=CKV_DOCKER_3 We're not adding a user
# checkov:skip=CKV_DOCKER_7 We're just following latest.
2024-05-17 07:49:08 +00:00
FROM amazon/dynamodb-local
2024-05-17 09:19:40 +00:00
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
org.label-schema.vcs-url="https://github.com/benzine-framework/docker-dynamodb" \
org.opencontainers.image.source="https://github.com/benzine-framework/docker-dynamodb"
2024-05-17 07:49:08 +00:00
HEALTHCHECK --interval=5s --timeout=3s --start-period=0s --retries=5 \
CMD curl --silent --output /dev/null http://localhost:8000/shell/
2024-05-17 09:19:40 +00:00
2024-05-17 07:49:08 +00:00
CMD ["-jar", "/home/dynamodblocal/DynamoDBLocal.jar", "-inMemory"]