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
Raw Normal View History

2021-01-23 22:48:49 +00:00
ARG ARCH
# STEP 1 build executable binary
2021-02-25 08:01:04 +00:00
FROM amd64/golang:1.16.0-alpine3.13@sha256:353e19718d4aa37cb38cf362e5aba23e22b8680bfc18255408ccd9b7b777c469 AS builder-amd64
FROM arm32v7/golang:1.16.0-alpine3.13@sha256:02211dfefce87856aa28719de2e0769b90f95908d940107aad9fa3f67e73bbe1 AS builder-arm
FROM arm64v8/golang:1.16.0-alpine3.13@sha256:f218dbfbea2b3da379a53bf5a11655ed1d3d9cbe42d6e533e62f20dfb543fa74 AS builder-arm64
2021-01-23 22:48:49 +00:00
FROM builder-${ARCH} AS builder
ENV MORTY_VERSION="f56efbfca411605bc7a2b5cc8fcad91df537a597"
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-02-09 05:01:05 +00:00
apk add --no-cache git="2.30.1-r0" && \
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-02-18 05:01:23 +00:00
FROM amd64/alpine:3.13.2@sha256:4661fb57f7890b9145907a1fe2555091d333ff3d28db86c3bb906f6a2be93c87 AS base-amd64
FROM arm32v7/alpine:3.13.2@sha256:db5f021b29ec8fcf605f00d2aac06345756b0ffbdea0e7994044fe9172619a0a AS base-arm
FROM arm64v8/alpine:3.13.2@sha256:c45a1db6e04b73aad9e06b08f2de11ce8e92d894141b2e801615fa7a8f68314a 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"]