2022-11-18 16:06:40 +03:00
|
|
|
FROM alpine:3.17 AS builder
|
2023-06-28 16:02:28 +03:00
|
|
|
WORKDIR /tmp/hurl
|
|
|
|
COPY . /tmp/hurl
|
2023-05-05 10:08:45 +03:00
|
|
|
# hadolint ignore=DL3018
|
|
|
|
RUN apk add --no-cache bash git && \
|
2023-06-28 16:02:28 +03:00
|
|
|
bash -c bin/install_prerequisites_alpine.sh && \
|
2023-05-05 10:08:45 +03:00
|
|
|
bash -c bin/install_rust.sh && \
|
|
|
|
bash -c ./bin/release/release.sh
|
2021-10-23 20:16:41 +03:00
|
|
|
|
2022-11-18 16:06:40 +03:00
|
|
|
FROM alpine:3.17 AS runner
|
2021-12-15 16:22:29 +03:00
|
|
|
ARG docker_build_date
|
2023-06-28 16:02:28 +03:00
|
|
|
ARG hurl_branch
|
2022-11-18 22:20:08 +03:00
|
|
|
LABEL "org.opencontainers.image.source"="https://github.com/Orange-OpenSource/hurl"
|
|
|
|
LABEL "org.opencontainers.image.description"="Hurl is a command line tool that runs HTTP requests defined in a simple plain text format"
|
2022-11-21 17:29:39 +03:00
|
|
|
LABEL "org.opencontainers.image.licenses"="Apache-2.0"
|
2021-12-15 16:22:29 +03:00
|
|
|
LABEL "com.orange.hurl.created"="${docker_build_date}"
|
|
|
|
LABEL "com.orange.hurl.authors"="Fabrice REIX, Jean Christophe AMIEL, Orange-OpenSource"
|
|
|
|
LABEL "com.orange.hurl.url"="https://hurl.dev"
|
|
|
|
LABEL "com.orange.hurl.documentation"="https://hurl.dev"
|
|
|
|
LABEL "com.orange.hurl.source"="https://github.com/Orange-OpenSource/hurl"
|
2023-06-28 16:02:28 +03:00
|
|
|
LABEL "com.orange.hurl.version"=${hurl_branch}
|
2021-12-15 16:22:29 +03:00
|
|
|
LABEL "com.orange.hurl.vendor"="Orange-OpenSource"
|
|
|
|
LABEL "com.orange.hurl.licenses"="Apache-2.0"
|
|
|
|
LABEL "com.orange.hurl.title"="Hurl"
|
|
|
|
LABEL "com.orange.hurl.description"="Hurl is a command line tool that runs HTTP requests defined in a simple plain text format"
|
2022-11-18 16:06:40 +03:00
|
|
|
LABEL "com.orange.hurl.base.name"="alpine:3.17"
|
2021-12-15 16:22:29 +03:00
|
|
|
COPY --from=builder /tmp/hurl/target/release/hurl /usr/bin/
|
2023-06-28 12:32:27 +03:00
|
|
|
COPY --from=builder /tmp/hurl/target/release/hurlfmt /usr/bin/
|
2023-05-05 10:08:45 +03:00
|
|
|
COPY --from=builder /usr/lib/libcurl.so.4 /usr/lib/
|
|
|
|
COPY --from=builder /usr/lib/libnghttp2.so.14 /usr/lib/
|
|
|
|
COPY --from=builder /usr/lib/libbrotli*.so.1 /usr/lib/
|
2021-12-11 21:23:30 +03:00
|
|
|
COPY --from=builder /usr/lib/libxml2.so.2 /usr/lib/
|
|
|
|
COPY --from=builder /usr/lib/libgcc_s.so.1 /usr/lib/
|
|
|
|
COPY --from=builder /usr/lib/liblzma.so.5 /usr/lib/
|
2021-12-15 16:22:29 +03:00
|
|
|
ENTRYPOINT ["/usr/bin/hurl"]
|