mirror of
https://gitea.0xace.cc/rust/github-release-bot.git
synced 2024-11-24 21:36:40 +00:00
fix image
This commit is contained in:
parent
0d1637137a
commit
2073645fed
@ -1,12 +1,11 @@
|
||||
FROM rust:alpine as builder
|
||||
RUN apk update
|
||||
RUN apk add --no-cache openssl-dev musl-dev
|
||||
FROM clux/muslrust as builder
|
||||
RUN apt-get update && apt-get install -y ca-certificates
|
||||
WORKDIR /opt
|
||||
ADD . .
|
||||
RUN cargo build --release --verbose
|
||||
RUN cargo build --release --verbose --target x86_64-unknown-linux-musl
|
||||
|
||||
FROM alpine:latest
|
||||
COPY --from=builder /opt/target/release/github-release-bot /opt/github-release-bot
|
||||
FROM alpine:3.17
|
||||
COPY --from=builder /opt/target/x86_64-unknown-linux-musl/release/github-release-bot /opt/github-release-bot
|
||||
COPY ./docker/entrypoint.sh /opt/entrypoint.sh
|
||||
RUN chmod +x /opt/entrypoint.sh
|
||||
WORKDIR /opt
|
||||
|
Loading…
Reference in New Issue
Block a user