| 1234567891011121314151617181920212223242526 |
- # On Alpine linux, the build fails with:
- # error: cannot produce proc-macro for `serde_derive v1.0.102` as the target `x86_64-unknown-linux-musl` does not support these crate types
- # See https://github.com/rust-lang/cargo/issues/5266
- # Fedora 30 produces a builder image 2.01 GiB and solang image of 294 MiB
- # Ubuntu 18.04 produces a builder image 1.53 GiB and solang image of 84 MiB
- # Debian Buster produces a builder image 2.04 GiB
- FROM ghcr.io/hyperledger/solang:ci as builder
- COPY . src
- WORKDIR /src/stdlib/
- RUN make
- RUN rustup default 1.59.0
- WORKDIR /src
- RUN cargo build --release
- FROM ubuntu:20.04
- COPY --from=builder /src/target/release/solang /usr/bin/solang
- LABEL org.opencontainers.image.title="Solang Solidity Compiler" \
- org.opencontainers.image.licenses="Apache-2.0"
- ENTRYPOINT ["/usr/bin/solang"]
|