rejson 0.6.1

A command line utility for managing secrets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM goreleaser/goreleaser:v2.12.7

# Install build dependencies
RUN apk add --no-cache zig=0.14.1-r0

# Install Rust
ENV PATH="/root/.cargo/bin:${PATH}"
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal \
  && rustc --version \
  && cargo install cargo-zigbuild

WORKDIR /app
VOLUME [ "/app" ]

ENTRYPOINT ["goreleaser"]