redsunlib/Dockerfile

8 lines
100 B
Docker
Raw Normal View History

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