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

29 lines
922 B
Text
Raw Normal View History

2021-01-23 23:48:49 +01:00
# STEP 1 build executable binary
2021-11-13 17:00:50 +00:00
FROM golang:1.17.3-alpine3.13@sha256:33c95bc78fa434bae90c45d04e5a02612492acbb7118f35538a56ee0646c1bb7 AS builder
2021-01-23 23:48:49 +01:00
ENV MORTY_VERSION="f5bff1e285d3f973cacf73318e55175edafd633f"
2021-01-23 23:48:49 +01:00
WORKDIR $GOPATH/src/github.com/asciimoo/morty
2021-01-27 23:39:56 +01:00
RUN apk upgrade --no-cache && \
2021-06-24 23:15:09 +02:00
apk add --no-cache git && \
2021-01-27 23:32:49 +01:00
git clone https://github.com/asciimoo/morty.git . && \
git checkout "${MORTY_VERSION}"
2021-01-23 23:48:49 +01:00
RUN go get -d -v && gofmt -l ./ && go build .
# STEP 2 build the image including only the binary
2022-03-24 05:01:18 +00:00
FROM alpine:3.15.2@sha256:ceeae2849a425ef1a7e591d8288f1a58cdf1f4e8d9da7510e29ea829e61cf512
2021-01-23 23:48:49 +01:00
2021-01-27 23:39:56 +01:00
RUN apk upgrade --no-cache && \
2021-11-05 00:24:12 +01:00
apk --no-cache add ca-certificates && \
2021-01-27 23:32:49 +01:00
rm -f /var/cache/apk/* && \
adduser -D -h /usr/local/morty -s /bin/false morty morty
2021-01-23 23:48:49 +01:00
COPY --from=builder /go/src/github.com/asciimoo/morty/morty /usr/local/morty/morty
EXPOSE 3000
USER morty
ENTRYPOINT ["/usr/local/morty/morty"]