File: Dockerfile.rcodesign

package info (click to toggle)
xerial-sqlite-jdbc 3.46.1.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,244 kB
  • sloc: java: 18,649; sh: 2,890; ansic: 2,830; xml: 455; makefile: 198
file content (7 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
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"]