fedilogue/restapi/Dockerfile

13 lines
242 B
Docker
Raw Normal View History

FROM golang:latest AS build
WORKDIR /build
COPY go.mod go.sum .
RUN go mod download
COPY . .
RUN go build .
FROM alpine:latest AS run
WORKDIR /app
RUN apk add gcompat
COPY --from=build /build/restapi /app/restapi
ENTRYPOINT ["/app/restapi"]