Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ FROM dependencies AS builder
ARG VERSION
ENV VERSION=${VERSION}
ARG DISTRIBUTOR_PUBKEY
RUN DISTRIBUTOR_PUBKEY=${DISTRIBUTOR_PUBKEY} make build
ARG MINERS_WHITE_LIST
ENV MINERS_WHITE_LIST=${MINERS_WHITE_LIST}
ENV DISTRIBUTOR_PUBKEY=${DISTRIBUTOR_PUBKEY}
RUN make build


RUN --mount=type=secret,id=private_key,dst=/app/tee/private.pem make ci-sign

Expand Down