mirror of
https://github.com/spikecodes/libreddit.git
synced 2025-12-10 07:42:04 +01:00
8 lines
100 B
Docker
8 lines
100 B
Docker
FROM rust:latest
|
|
|
|
WORKDIR /usr/src/libreddit
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
CMD ["libreddit"] |