mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-11 17:44:19 -05:00
11 lines
177 B
Core
11 lines
177 B
Core
FROM rust:latest as builder
|
|
WORKDIR /core
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build -p core --release
|
|
|
|
FROM gcr.io/distroless/cc
|
|
COPY --from=builder /core/target/release/core /
|
|
|
|
CMD ["./core"] |