6 lines
179 B
Text
6 lines
179 B
Text
|
FROM ubuntu:jammy AS mariadb-traptest
|
||
|
COPY traptest.sh /usr/local/bin/traptest
|
||
|
RUN chmod +x /usr/local/bin/traptest
|
||
|
ENTRYPOINT ["/usr/local/bin/traptest"]
|
||
|
CMD []
|
||
|
STOPSIGNAL SIGINT
|