2021-01-23 22:48:49 +00:00
|
|
|
ARG ARCH
|
|
|
|
|
|
|
|
# STEP 1 build executable binary
|
2021-08-13 04:01:34 +00:00
|
|
|
FROM golang:1.16.7-alpine3.13@sha256:b26480f595fd4c03dacd793eeec866bc73e47f9e5673843cbb3a0e2820268742 AS builder-amd64
|
2021-08-06 19:01:32 +00:00
|
|
|
FROM arm32v7/golang:1.16.7-alpine3.13@sha256:1f52cd915cb844d697536be79c45f775daa5e3d954c23c0691938370670ed7dd AS builder-arm
|
|
|
|
FROM arm64v8/golang:1.16.7-alpine3.13@sha256:2ce14a0842a200c1edd14e9535f13b15ca03fd98b237d589f8ca971f10a411a3 AS builder-arm64
|
2021-01-23 22:48:49 +00:00
|
|
|
FROM builder-${ARCH} AS builder
|
|
|
|
|
2021-04-22 13:01:14 +00:00
|
|
|
ENV MORTY_VERSION="f5bff1e285d3f973cacf73318e55175edafd633f"
|
2021-01-23 22:48:49 +00:00
|
|
|
|
|
|
|
WORKDIR $GOPATH/src/github.com/asciimoo/morty
|
|
|
|
|
2021-01-27 22:39:56 +00:00
|
|
|
RUN apk upgrade --no-cache && \
|
2021-06-24 21:15:09 +00:00
|
|
|
apk add --no-cache git && \
|
2021-01-27 22:32:49 +00:00
|
|
|
git clone https://github.com/asciimoo/morty.git . && \
|
|
|
|
git checkout "${MORTY_VERSION}"
|
2021-01-23 22:48:49 +00:00
|
|
|
|
|
|
|
RUN go get -d -v && gofmt -l ./ && go build .
|
|
|
|
|
|
|
|
# STEP 2 build the image including only the binary
|
2021-08-13 04:01:34 +00:00
|
|
|
FROM alpine:3.14.1@sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae AS base-amd64
|
2021-08-06 19:01:32 +00:00
|
|
|
FROM arm32v7/alpine:3.14.1@sha256:fb9ac82b4cc94c5a6c416a1c656b3ee84df9290ab4106c260eb959997e759e5e AS base-arm
|
|
|
|
FROM arm64v8/alpine:3.14.1@sha256:bd9137c3bb45dbc40cde0f0e19a8b9064c2bc485466221f5e95eb72b0d0cf82e AS base-arm64
|
2021-01-23 22:48:49 +00:00
|
|
|
FROM base-${ARCH}
|
|
|
|
|
2021-01-27 22:39:56 +00:00
|
|
|
RUN apk upgrade --no-cache && \
|
2021-02-01 20:00:44 +00:00
|
|
|
apk --no-cache add ca-certificates="20191127-r5" && \
|
2021-01-27 22:32:49 +00:00
|
|
|
rm -f /var/cache/apk/* && \
|
|
|
|
adduser -D -h /usr/local/morty -s /bin/false morty morty
|
2021-01-23 22:48:49 +00:00
|
|
|
|
|
|
|
COPY --from=builder /go/src/github.com/asciimoo/morty/morty /usr/local/morty/morty
|
|
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
USER morty
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/morty/morty"]
|