We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62fe521 commit c39680dCopy full SHA for c39680d
docker/Dockerfile
@@ -10,7 +10,9 @@ COPY . /app
10
RUN cargo build --release
11
12
13
-FROM gcr.io/distroless/cc-debian12 AS final
14
-COPY --from=build /app/target/release/wrpt .
+FROM debian:12-slim AS final
15
16
-ENTRYPOINT ["./wrpt"]
+COPY --from=build /app/target/release/wrpt /usr/bin/
+COPY --from=docker/compose-bin:2.17.0 /docker-compose /usr/bin/compose
17
+
18
+ENTRYPOINT ["/bin/wrpt"]
0 commit comments