2024-08-07 11:30:30 +00:00
|
|
|
# checkov:skip=CKV_DOCKER_3 user cannot be determined at this stage.
|
2022-09-01 14:31:45 +00:00
|
|
|
FROM ubuntu:jammy AS mariadb-traptest
|
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-s3db" \
|
|
|
|
org.opencontainers.image.source="https://github.com/benzine-framework/docker-s3db"
|
|
|
|
|
2022-09-01 14:31:45 +00:00
|
|
|
COPY traptest.sh /usr/local/bin/traptest
|
|
|
|
RUN chmod +x /usr/local/bin/traptest
|
|
|
|
ENTRYPOINT ["/usr/local/bin/traptest"]
|
|
|
|
CMD []
|
2024-08-07 11:30:30 +00:00
|
|
|
HEALTHCHECK NONE # Healthchecks are not relevant for this image
|
2024-05-17 09:19:40 +00:00
|
|
|
STOPSIGNAL SIGINT
|