mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
Fix Dockerfile
This commit is contained in:
parent
7ae54e2f77
commit
4f379754f7
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
FROM rust:latest as builder
|
FROM rust:alpine as builder
|
||||||
WORKDIR /usr/src/libreddit
|
WORKDIR /usr/src/libreddit
|
||||||
COPY . .
|
COPY . .
|
||||||
|
RUN apk add --no-cache g++ openssl-dev
|
||||||
RUN cargo install --path .
|
RUN cargo install --path .
|
||||||
|
|
||||||
FROM debian:buster-slim
|
FROM alpine:latest
|
||||||
RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/*
|
|
||||||
COPY --from=builder /usr/local/cargo/bin/libreddit /usr/local/bin/libreddit
|
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