1
0
mirror of https://github.com/spikecodes/libreddit synced 2025-01-05 15:35:40 +01:00
libreddit/Dockerfile
2020-10-25 13:48:44 -07:00

8 lines
100 B
Docker

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