forked from github-starred/komodo
30 lines
790 B
Docker
30 lines
790 B
Docker
## All in one, multi stage compile + runtime Docker build for your architecture.
|
|
|
|
FROM rust:1.82.0-bullseye AS builder
|
|
|
|
WORKDIR /builder
|
|
COPY Cargo.toml Cargo.lock ./
|
|
COPY ./lib ./lib
|
|
COPY ./client/core/rs ./client/core/rs
|
|
COPY ./client/periphery ./client/periphery
|
|
COPY ./bin/periphery ./bin/periphery
|
|
|
|
# Compile app
|
|
RUN cargo build -p komodo_periphery --release
|
|
|
|
# Final Image
|
|
FROM debian:bullseye-slim
|
|
|
|
COPY ./bin/periphery/debian-deps.sh .
|
|
RUN sh ./debian-deps.sh && rm ./debian-deps.sh
|
|
|
|
COPY --from=builder /builder/target/release/periphery /usr/local/bin/periphery
|
|
|
|
EXPOSE 8120
|
|
|
|
LABEL org.opencontainers.image.source=https://github.com/mbecker20/komodo
|
|
LABEL org.opencontainers.image.description="Komodo Periphery"
|
|
LABEL org.opencontainers.image.licenses=GPL-3.0
|
|
|
|
CMD [ "periphery" ]
|