fishctl/Containerfile
2024-06-21 02:11:22 +09:00

10 lines
267 B
Docker

FROM docker.io/rust:alpine AS builder
WORKDIR /fishctl
COPY . .
RUN apk add --no-cache musl-dev
RUN cargo install --locked --path .
FROM docker.io/busybox:musl
COPY LICENSE ./
COPY --from=builder /usr/local/cargo/bin/fishctl /usr/local/bin/fishctl
WORKDIR /firefish