mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
8 lines
101 B
Docker
8 lines
101 B
Docker
FROM rust:latest
|
|
|
|
WORKDIR /usr/src/libreddit
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
CMD ["libreddit"]
|