This repository has been archived on 2022-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
morty/Dockerfile

37 lines
1.5 KiB
Docker

ARG ARCH
# STEP 1 build executable binary
FROM golang:1.17.0-alpine3.13@sha256:b766a0b208eccc923a05141b484dadab5025efd0f3f6d9bbaba68aac624f558d AS builder-amd64
FROM arm32v7/golang:1.17.0-alpine3.13@sha256:a159867ac35588460998ba44062db4e5613634da12437e50b6fa99c8d747d9a5 AS builder-arm
FROM arm64v8/golang:1.17.0-alpine3.13@sha256:2e4405967c4018a875f45df6c96d3007bb2ab4842d6553e7f49e746be3f52c5b AS builder-arm64
FROM builder-${ARCH} AS builder
ENV MORTY_VERSION="f5bff1e285d3f973cacf73318e55175edafd633f"
WORKDIR $GOPATH/src/github.com/asciimoo/morty
RUN apk upgrade --no-cache && \
apk add --no-cache git && \
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 alpine:3.14.1@sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae AS base-amd64
FROM arm32v7/alpine:3.14.1@sha256:fb9ac82b4cc94c5a6c416a1c656b3ee84df9290ab4106c260eb959997e759e5e AS base-arm
FROM arm64v8/alpine:3.14.1@sha256:bd9137c3bb45dbc40cde0f0e19a8b9064c2bc485466221f5e95eb72b0d0cf82e 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"]