dumb-downloader/dockerfiles/Dockerfile-nobase

10 lines
235 B
Plaintext
Raw Normal View History

2023-02-12 19:39:41 +00:00
FROM debian:stable
COPY ./target/release/dudo /bin/dudo
RUN apt-get update &&\
apt-get install openssl ca-certificates &&\
apt-get clean
RUN chmod +x /bin/dudo
WORKDIR /workdir
ENTRYPOINT ["/bin/dudo"]