36 lines
1.5 KiB
Docker
36 lines
1.5 KiB
Docker
ARG ARCH
|
|
|
|
# STEP 1 build executable binary
|
|
FROM amd64/golang:1.16.3-alpine3.13@sha256:d9def078ada2d08941103ad098cde6cde1bf115eb4a5a56dbf863ef5e888dea4 AS builder-amd64
|
|
FROM arm32v7/golang:1.16.3-alpine3.13@sha256:4d502bc9438ef1f8d818cf21ddcf18ceae9e47e01c1a38d56eb729b099266774 AS builder-arm
|
|
FROM arm64v8/golang:1.16.3-alpine3.13@sha256:7337b68ae25a7923742ef48eacdf5ad07963ec5ccf86bb7f95fd8dee6e63a723 AS builder-arm64
|
|
FROM builder-${ARCH} AS builder
|
|
|
|
ENV MORTY_VERSION="5489cf4f5876106b53293d4023d49de880421b27"
|
|
|
|
WORKDIR $GOPATH/src/github.com/asciimoo/morty
|
|
|
|
RUN apk upgrade --no-cache && \
|
|
apk add --no-cache git="2.30.2-r0" && \
|
|
git clone https://github.com/asciimoo/morty.git . && \
|
|
git checkout "${MORTY_VERSION}"
|
|
|
|
RUN go get -d -v && gofmt -l ./ && go build .
|
|
|
|
# STEP 2 build the image including only the binary
|
|
FROM amd64/alpine:3.13.5@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 AS base-amd64
|
|
FROM arm32v7/alpine:3.13.5@sha256:9663906b1c3bf891618ebcac857961531357525b25493ef717bca0f86f581ad6 AS base-arm
|
|
FROM arm64v8/alpine:3.13.5@sha256:8f18fae117ec6e5777cc62ba78cbb3be10a8a38639ccfb949521abd95c8301a4 AS base-arm64
|
|
FROM base-${ARCH}
|
|
|
|
RUN apk upgrade --no-cache && \
|
|
apk --no-cache add ca-certificates="20191127-r5" && \
|
|
rm -f /var/cache/apk/* && \
|
|
adduser -D -h /usr/local/morty -s /bin/false morty morty
|
|
|
|
COPY --from=builder /go/src/github.com/asciimoo/morty/morty /usr/local/morty/morty
|
|
|
|
EXPOSE 3000
|
|
USER morty
|
|
|
|
ENTRYPOINT ["/usr/local/morty/morty"]
|