mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-29 12:43:26 -05:00
* add terminal (ssh) apis * add core terminal exec method * terminal typescript client method * terminals WIP * backend for pty * add ts responses * about wire everything * add new blog * credit Skyfay * working * regen lock * 1.17.4-dev-1 * pty history * replace the test terminal impl with websocket (pty) * create api and improve frontend * fix fe * terminals * disable terminal api on periphery * implement write level terminal perms * remove unneeded * fix clippy * delete unneeded * fix waste cpu cycles * set TERM and COLORTERM for shell environment * fix xterm scrolling behavior * starship promp in periphery container terminal * kill all terminals on periphery shutdown signal * improve starship config and enable ssl in compose * use same scrollTop setter * fix periphery container distribution link * support custom command / args to init terminal * allow fully configurable init command * docker exec into container * add permissioning for container exec * add starship to core container * add delete all terminals * dev-2 * finished gen client * core need curl * hide Terminal trigger if disabled * 1.17.4
31 lines
846 B
Docker
31 lines
846 B
Docker
## All in one, multi stage compile + runtime Docker build for your architecture.
|
|
|
|
FROM rust:1.86.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/starship.toml /config/starship.toml
|
|
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/moghtech/komodo
|
|
LABEL org.opencontainers.image.description="Komodo Periphery"
|
|
LABEL org.opencontainers.image.licenses=GPL-3.0
|
|
|
|
CMD [ "periphery" ]
|