1
0
mirror of https://github.com/spikecodes/libreddit synced 2024-12-23 01:02:26 +01:00
libreddit/Dockerfile
2021-02-10 01:31:28 +00:00

9 lines
101 B
Docker

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