mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-26 00:36:12 +00:00
8 lines
100 B
Text
8 lines
100 B
Text
|
FROM rust:latest
|
||
|
|
||
|
WORKDIR /usr/src/libreddit
|
||
|
COPY . .
|
||
|
|
||
|
RUN cargo install --path .
|
||
|
|
||
|
CMD ["libreddit"]
|