Dockerfile: use alpine 3.10

This commit is contained in:
Cadey Ratio 2019-12-11 18:12:17 +00:00
parent 496930232d
commit 6a58dcc581
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM xena/go:1.13.5 AS build
FROM within/go:1.13.5 AS build
WORKDIR /wasmcloud
ENV GOPROXY https://cache.greedo.xeserv.us
COPY go.mod .
@ -7,7 +7,8 @@ RUN go mod download
COPY . .
RUN GOBIN=/wasmcloud/bin go install -tags=postgres ./cmd/...
FROM xena/alpine
FROM alpine:3.10
RUN apk --no-cache add libc6-compat
COPY --from=build /wasmcloud/bin/ /usr/local/bin
CMD wasmcloudd
WORKDIR /wasmcloud