forked from github-starred/komodo
15 lines
332 B
Docker
15 lines
332 B
Docker
FROM rust:latest as builder
|
|
WORKDIR /periphery
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build -p periphery --release
|
|
|
|
FROM debian:stable-slim
|
|
# install git and docker
|
|
COPY ./install_periphery_dependencies.sh ./
|
|
RUN sh ./install_periphery_dependencies.sh
|
|
|
|
COPY --from=builder /periphery/target/release/periphery /usr/local/bin/periphery
|
|
|
|
CMD "periphery" |