mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
Fix Dockerfile
This commit is contained in:
parent
6feb347c27
commit
16454213cf
1 changed files with 4 additions and 5 deletions
|
@ -1,9 +1,8 @@
|
|||
FROM rust:alpine as builder
|
||||
FROM rust:latest
|
||||
|
||||
WORKDIR /usr/src/libreddit
|
||||
COPY . .
|
||||
RUN apk add --no-cache g++ openssl-dev
|
||||
|
||||
RUN cargo install --path .
|
||||
|
||||
FROM alpine:latest
|
||||
COPY --from=builder /usr/local/cargo/bin/libreddit /usr/local/bin/libreddit
|
||||
CMD ["libreddit"]
|
||||
CMD ["libreddit"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue