undeepend/Dockerfile
2025-07-25 12:54:22 +02:00

11 lines
No EOL
317 B
Docker

FROM rust:1.88-alpine as builder
WORKDIR /usr/src/undeepend
COPY . .
RUN cargo install --path .
FROM debian:bullseye-slim
RUN apt-get update && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/undeepend /usr/local/bin/undeepend
CMD ["undeepend"]
#&& apt-get install -y extra-runtime-dependencies