mirror of
https://github.com/spikecodes/libreddit
synced 2024-12-23 01:02:26 +01:00
9 lines
101 B
Docker
9 lines
101 B
Docker
FROM rust:latest
|
|
|
|
WORKDIR /usr/src/libreddit
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
CMD ["libreddit"]
|