redsunlib/Dockerfile
2021-02-10 01:31:28 +00:00

9 lines
101 B
Docker

FROM rust:latest
WORKDIR /usr/src/libreddit
COPY . .
RUN cargo install --path .
CMD ["libreddit"]