Skip to content

Commit

Permalink
build(native): add dockerfile for rcodesign
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Aug 24, 2022
1 parent 63c6c4a commit 22b5f87
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/Dockerfile.rcodesign
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM rust:latest as build
RUN cargo install --git https://github.com/indygreg/PyOxidizer --branch main --bin rcodesign apple-codesign

FROM ubuntu:latest
COPY --from=build /usr/local/cargo/bin/rcodesign /bin
WORKDIR /workdir
ENTRYPOINT ["/bin/rcodesign"]

0 comments on commit 22b5f87

Please sign in to comment.