Compare commits
No commits in common. "0d0c60e4d3a95d87519bf1157446bbb5de5a2b8d" and "1a71987c56037165e465f0016df81492702d40fd" have entirely different histories.
0d0c60e4d3
...
1a71987c56
1 changed files with 6 additions and 8 deletions
14
Dockerfile
14
Dockerfile
|
@ -10,10 +10,9 @@ ENV MORTY_VERSION="f56efbfca411605bc7a2b5cc8fcad91df537a597"
|
||||||
|
|
||||||
WORKDIR $GOPATH/src/github.com/asciimoo/morty
|
WORKDIR $GOPATH/src/github.com/asciimoo/morty
|
||||||
|
|
||||||
RUN apk update && apk upgrade && \
|
RUN apk add --no-cache git="2.26.2-r0" \
|
||||||
apk add --no-cache git="2.26.2-r0" && \
|
&& git clone https://github.com/asciimoo/morty.git . \
|
||||||
git clone https://github.com/asciimoo/morty.git . && \
|
&& git checkout "${MORTY_VERSION}"
|
||||||
git checkout "${MORTY_VERSION}"
|
|
||||||
|
|
||||||
RUN go get -d -v && gofmt -l ./ && go build .
|
RUN go get -d -v && gofmt -l ./ && go build .
|
||||||
|
|
||||||
|
@ -23,10 +22,9 @@ FROM arm32v7/alpine:3.12.3@sha256:299294be8699c1b323c137f972fd0aa5eaa4b95489c213
|
||||||
FROM arm64v8/alpine:3.12.3@sha256:549694ea68340c26d1d85c00039aa11ad835be279bfd475ff4284b705f92c24e AS base-arm64
|
FROM arm64v8/alpine:3.12.3@sha256:549694ea68340c26d1d85c00039aa11ad835be279bfd475ff4284b705f92c24e AS base-arm64
|
||||||
FROM base-${ARCH}
|
FROM base-${ARCH}
|
||||||
|
|
||||||
RUN apk update && apk upgrade && \
|
RUN apk --no-cache add ca-certificates="20191127-r4" \
|
||||||
apk --no-cache add ca-certificates="20191127-r4" && \
|
&& rm -f /var/cache/apk/* \
|
||||||
rm -f /var/cache/apk/* && \
|
&& adduser -D -h /usr/local/morty -s /bin/false morty morty
|
||||||
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
|
COPY --from=builder /go/src/github.com/asciimoo/morty/morty /usr/local/morty/morty
|
||||||
|
|
||||||
|
|
Reference in a new issue