You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM alpine:3.12 AS builder
- RUN apk add --no-cache rust cargo openssl-dev
- WORKDIR /usr/src/crepo
- COPY Cargo.* ./
- COPY src ./src
- RUN cargo build --release
-
- FROM alpine:3.12
- RUN apk add --no-cache libgcc openssl
- COPY --from=builder /usr/src/crepo/target/release/crepo /usr/bin/
- CMD ["crepo"]
|