Files
komodo/Dockerfile.periphery
T

13 lines
245 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 --from=builder /periphery/target/release/periphery /usr/local/bin/periphery
CMD "periphery"