-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
40 lines (33 loc) · 926 Bytes
/
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
40
# syntax=docker/dockerfile:1.8
FROM golang:1.22-alpine AS builder
RUN apk add --no-cache build-base git
WORKDIR /app
COPY . .
RUN \
--mount=type=cache,target=/go/pkg \
--mount=type=cache,target=/root/.cache/go-build \
go build -o solcluster .
# Copy final binary into light stage.
FROM alpine:3
ARG GITHUB_SHA=local
ENV GITHUB_SHA=${GITHUB_SHA}
COPY --from=builder /app/solcluster /usr/local/bin/
ENV USER=solcluster
ENV UID=13852
ENV GID=13852
RUN addgroup -g "$GID" "$USER"
RUN adduser \
--disabled-password \
--gecos "solana" \
--home "/opt/$USER" \
--ingroup "$USER" \
--no-create-home \
--uid "$UID" \
"$USER"
RUN chown solcluster /usr/local/bin/solcluster
RUN chmod u+x /usr/local/bin/solcluster
WORKDIR "/opt/$USER"
USER solcluster
ENTRYPOINT ["/usr/local/bin/solcluster"]
CMD ["sidecar"]
LABEL org.opencontainers.image.source="https://github.com/Blockdaemon/solana-cluster"