Docker-S3DB/Dockerfile.traptest

12 lines
413 B
Text
Raw Normal View History

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-05-17 09:19:40 +00:00
STOPSIGNAL SIGINT