update deps, bump version to 0.1.9 and make new image with helm chart

This commit is contained in:
ace
2025-02-25 00:29:18 +03:00
parent 55d8f50abf
commit 7b4b235fd9
7 changed files with 987 additions and 609 deletions

View File

@ -1,10 +1,10 @@
FROM clux/muslrust:1.74.1 as builder
FROM clux/muslrust:1.85.0-stable AS builder
RUN apt-get update && apt-get install -y ca-certificates
WORKDIR /opt
ADD . .
RUN cargo build --release --verbose --target x86_64-unknown-linux-musl
FROM alpine:3.18
FROM alpine:3.21
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