Skip to content

Commit

Permalink
fix(ci): use a different musl builder
Browse files Browse the repository at this point in the history
  • Loading branch information
dufkan committed May 10, 2024
1 parent 1a426a5 commit 272219f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN cd meesign-helper && mvn clean compile assembly:single


# Build and statically link the meesign binary
FROM kristianmika/rust-musl-builder:stable as rust-builder
FROM nwtgck/rust-musl-builder:latest as rust-builder
WORKDIR /home/rust/src/
ADD --chown=rust:rust . .
# Install protobuf compiler
Expand Down Expand Up @@ -35,14 +35,14 @@ ARG REVISION
ARG BUILD_VERSION

LABEL org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.source="https://github.com/crocs-muni/meesign-server" \
org.opencontainers.image.version=${BUILD_VERSION} \
org.opencontainers.image.revision=${REVISION} \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.title="meesign-server" \
org.opencontainers.image.description="Meesign server for threshold ECDSA signatures." \
org.opencontainers.image.vendor="CRoCS, FI MUNI" \
org.label-schema.docker.cmd="docker run --detach --publish 1337:1337 --volume `pwd`/keys/:/meesign/keys/ crocsmuni/meesign:latest"
org.opencontainers.image.source="https://github.com/crocs-muni/meesign-server" \
org.opencontainers.image.version=${BUILD_VERSION} \
org.opencontainers.image.revision=${REVISION} \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.title="meesign-server" \
org.opencontainers.image.description="Meesign server for threshold ECDSA signatures." \
org.opencontainers.image.vendor="CRoCS, FI MUNI" \
org.label-schema.docker.cmd="docker run --detach --publish 1337:1337 --volume `pwd`/keys/:/meesign/keys/ crocsmuni/meesign:latest"

EXPOSE ${SERVER_PORT}
# running the binary from a specific directory as meesign helper requires
Expand Down

0 comments on commit 272219f

Please sign in to comment.