libreddit/Dockerfile

9 lines
101 B
Docker

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