We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dbbeeb commit da60923Copy full SHA for da60923
Dockerfile
@@ -5,7 +5,7 @@ COPY . /tmp/trim/
5
6
RUN cmake -S /tmp/trim -B /tmp/trim/build -G Ninja -D CMAKE_INSTALL_PREFIX:STRING="$PREFIX"
7
RUN cmake --build /tmp/trim/build --parallel
8
-RUN cmake --install /tmp/trim/build --strip --component Runtime --prefix /opt/tenzir/plugin/trim
+RUN cmake --install /tmp/trim/build --strip --component Runtime --prefix /tmp/trim/install
9
10
FROM builder AS test
11
@@ -15,4 +15,4 @@ ENTRYPOINT cmake --build /tmp/trim/build --target update-integration
15
16
FROM ghcr.io/tenzir/tenzir:${TENZIR_VERSION}
17
18
-COPY --from=builder --chown=tenzir:tenzir /opt/tenzir/plugin/trim /opt/tenzir/plugin/trim
+COPY --from=builder --chown=tenzir:tenzir /tmp/trim/install /opt/tenzir
0 commit comments