fishctl/Containerfile

11 lines
267 B
Text
Raw Normal View History

2024-06-20 13:33:43 +09:00
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
2024-06-21 02:09:50 +09:00
WORKDIR /firefish