dumb-downloader/Dockerfile

14 lines
355 B
Docker
Raw Permalink Normal View History

2023-01-17 21:35:35 +00:00
FROM rust:1.66.1-alpine3.17 as builder
WORKDIR /src
RUN apk update && apk add --no-cache libressl-dev musl-dev gcc
COPY ./ .
RUN cargo build --release
FROM alpine:3.17.1
2023-02-12 08:51:14 +00:00
COPY --from=builder /src/target/release/dudo /bin/dudo
RUN apk update && apk add --no-cache libressl-dev libc6-compat
2023-02-12 08:51:14 +00:00
RUN chmod +x /bin/dudo
2023-01-17 21:35:35 +00:00
WORKDIR /workdir
2023-02-12 08:51:14 +00:00
ENTRYPOINT ["/bin/dudo"]