-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
39 lines (32 loc) · 1.29 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM rust:1-bullseye AS build-image
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
wget \
curl \
libpq-dev \
pkg-config \
libssl-dev \
clang \
build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
COPY . /graphcast-cli
WORKDIR /graphcast-cli
RUN sh install-golang.sh
ENV PATH=$PATH:/usr/local/go/bin
RUN cargo build --release -p graphcast-cli
FROM alpine:3.17.3 as alpine
RUN set -x \
&& apk update \
&& apk add --no-cache upx dumb-init
COPY --from=build-image /graphcast-cli/target/release/graphcast-cli /graphcast-cli/target/release/graphcast-cli
RUN upx --overlay=strip --best /graphcast-cli/target/release/graphcast-cli
FROM gcr.io/distroless/cc AS runtime
COPY --from=build-image /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=build-image /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=build-image /etc/passwd /etc/passwd
COPY --from=build-image /etc/group /etc/group
COPY --from=alpine /usr/bin/dumb-init /usr/bin/dumb-init
COPY --from=alpine "/graphcast-cli/target/release/graphcast-cli" "/usr/local/bin/graphcast-cli"
ENTRYPOINT [ "/usr/bin/dumb-init", "--", "/usr/local/bin/graphcast-cli" ]