diff --git a/Dockerfile b/Dockerfile
index e3438d7286dc43be366a636ea5b0e702934db8e9..4d80408ea74c49c2560b353258a4e5a9e08db265 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,4 @@
+FROM jonasled.dev/firehouse-smokedetection/plugins/gotify:latest@sha256:dba0085b06836938eaec49b321b5c15023b68d8ce742548a1130a60735b3157e  AS plugin-gotify
 FROM golang:1.24.1-alpine AS build
 RUN apk add --no-cache --update gcc g++
 WORKDIR /app
@@ -11,4 +12,5 @@ ENV GIN_MODE=release \
     EXIT_ON_DISCONNECT=true
 COPY --from=build /firehouse-smokedetection /firehouse-smokedetection
 RUN mkdir /plugins
+COPY --from=plugin-gotify /gotify.so /plugins/gotify.so
 ENTRYPOINT ["/firehouse-smokedetection"]