Compare commits

...

1 Commits

Author SHA1 Message Date
Nikolai Rodionov
dbc672fe85 Init branch 2023-02-12 20:39:41 +01:00

View File

@ -0,0 +1,9 @@
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"]