general: add s390x & ppc64le
This commit is contained in:
9
frontend/Dockerfile.s390x
Normal file
9
frontend/Dockerfile.s390x
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM golang:buster AS step_0
|
||||
ENV CGO_ENABLED=0 GOOS=linux GOARCH=s390x GO111MODULE=on
|
||||
WORKDIR /root
|
||||
COPY . .
|
||||
RUN go build -o /frontend
|
||||
|
||||
FROM scratch AS step_1
|
||||
COPY --from=step_0 /frontend /
|
||||
ENTRYPOINT ["/frontend"]
|
||||
Reference in New Issue
Block a user