redsunlib/Dockerfile
2020-10-25 13:48:44 -07:00

8 lines
100 B
Docker

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