1
0
mirror of https://github.com/pcvolkmer/mv64e-rest-to-kafka-gateway synced 2025-09-13 09:12:51 +00:00

Initial commit

This commit is contained in:
2025-07-11 23:15:18 +02:00
commit 523ad89783
13 changed files with 3851 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM rust:alpine AS back-stage
RUN apk update
RUN apk add cmake make musl-dev g++
WORKDIR /build
COPY Cargo.toml ./
COPY src ./src
COPY test-files ./test-files
# Run tests before release build
RUN cargo test --release
RUN cargo build --release
# Build image from scratch
FROM scratch
LABEL org.opencontainers.image.source="https://github.com/pcvolkmer/dnpm-kafka-rest-proxy"
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
LABEL org.opencontainers.image.description="DNPM MTB REST Proxy für Kafka"
COPY --from=back-stage /build/target/release/dnpm-kafka-rest-proxy .
USER 65532
EXPOSE 3000
CMD ["./bwhc-kafka-rest-proxy"]