You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bathyscaphe/build/docker/Dockerfile.configapi

24 lines
478 B
Docker

# build image
FROM golang:1.15.0-alpine as builder
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh
WORKDIR /app
# Copy and download dependencies to cache them and faster build time
COPY go.mod go.sum ./
RUN go mod download
COPY . .
# Test then build app
RUN go build -v github.com/creekorful/bathyscaphe/cmd/bs-configapi
# runtime image
FROM alpine:latest
COPY --from=builder /app/bs-configapi /app/
WORKDIR /app/
ENTRYPOINT ["./bs-configapi"]