redsunlib/Dockerfile

8 lines
100 B
Docker
Raw Normal View History

2020-10-25 13:48:44 -07:00
FROM rust:latest
WORKDIR /usr/src/libreddit
COPY . .
RUN cargo install --path .
CMD ["libreddit"]