mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-07 08:00:54 +00:00
* 2.4.0-dev-0 * deploy 2.4.0-dev-1 * slightly optimize stack read path * Add IMAGE_NAME and IMAGE_TAG default build args in addition to VERSION * deploy 2.4.0-dev-2 * ui use || location.origin for base url * move to build time versioning * simplify run action with komodo managed version * procedure batch executions use tag filters * set advanced code splitting options * improve network module logic / edge cases * fix startup ordering - apply legacy db fixes before other tasks * lengthen periphery command timeouts * update deps * clients still have explicit versions * Add page breadcrumbs * mogh ui 1.2.6 * fix set version – set only specific path * cargo fmt * use mogh ui ListPagination * bump deps, rust 1.98.0 * missing dockerfile rust 1.98.0 bump
14 lines
238 B
Docker
14 lines
238 B
Docker
FROM rust:1.98.0-trixie as builder
|
|
WORKDIR /builder
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build -p update_logger --release
|
|
|
|
FROM gcr.io/distroless/debian-cc
|
|
|
|
COPY --from=builder /builder/target/release/update_logger /
|
|
|
|
EXPOSE 7000
|
|
|
|
CMD ["./update_logger"] |