mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-29 21:27:26 -05:00
16 lines
239 B
Docker
16 lines
239 B
Docker
FROM rust:latest as builder
|
|
WORKDIR /builder
|
|
|
|
COPY . .
|
|
|
|
RUN cd bin/core && cargo build --release
|
|
|
|
FROM gcr.io/distroless/cc
|
|
|
|
# COPY ./frontend/build /frontend
|
|
|
|
COPY --from=builder /builder/target/release/core /
|
|
|
|
EXPOSE 9000
|
|
|
|
CMD ["./core"] |