Compare commits

...

5 Commits

Author SHA1 Message Date
victor.kolomin 689ac2a54c fix issue with mc client
ci/woodpecker/tag/build Pipeline was successful
Co-authored-by: Copilot <copilot@github.com>
2026-04-24 18:29:48 +02:00
victor.kolomin 6602090c45 remove .woodpecker file according to doc
ci/woodpecker/tag/build Pipeline was successful
2026-04-10 13:53:46 +02:00
victor.kolomin 5e4a181ea9 add build file 2026-04-10 13:53:26 +02:00
victor.kolomin 466f837533 add rustic version v0.11.2 2026-04-10 12:00:37 +02:00
victor.kolomin ec34b374c7 fix architecture to 86_64
ci/woodpecker/tag/woodpecker Pipeline was successful
2026-01-22 14:32:41 +01:00
2 changed files with 4 additions and 4 deletions
@@ -18,4 +18,4 @@ steps:
when:
event:
- tag
- tag
+3 -3
View File
@@ -2,7 +2,7 @@
FROM debian:bookworm-slim
# Define the version of Rustic to install as a build argument
ARG RUSTIC_VERSION=v0.10.3
ARG RUSTIC_VERSION=v0.11.2
# Set DEBIAN_FRONTEND to noninteractive to suppress warnings
ENV DEBIAN_FRONTEND=noninteractive
@@ -11,11 +11,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
cron bash curl tzdata ca-certificates && \
rm -rf /var/lib/apt/lists/*
RUN curl -L https://github.com/rustic-rs/rustic/releases/download/${RUSTIC_VERSION}/rustic-${RUSTIC_VERSION}-aarch64-unknown-linux-musl.tar.gz \
RUN curl -L https://github.com/rustic-rs/rustic/releases/download/${RUSTIC_VERSION}/rustic-${RUSTIC_VERSION}-x86_64-unknown-linux-musl.tar.gz \
# RUN curl -L https://github.com/rustic-rs/rustic/releases/download/v0.10.2/rustic-v0.10.2-1-g189b17c-x86_64-unknown-linux-musl.tar.gz \
| tar -xvzf - -C /usr/local/bin rustic && \
\
curl -o /usr/local/bin/mc https://dl.min.io/client/mc/release/linux-amd64/mc && \
curl -L -o /usr/local/bin/mc https://dl.min.io/client/mc/release/linux-amd64/mc && \
\
chmod +x /usr/local/bin/rustic /usr/local/bin/mc