libreddit/Dockerfile

8 lines
100 B
Docker

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