pepebot/pepeservice/Dockerfile
DutchEllie 955ebad888
All checks were successful
continuous-integration/drone/push Build is passing
Added caching and used alpine
2022-05-11 13:45:31 +02:00

14 lines
409 B
Docker

# syntax=docker/dockerfile:1
FROM golang:1.17-alpine AS builder
WORKDIR /go/src/quenten.nl/pepeservice
COPY . ./
WORKDIR /go/src/quenten.nl/pepeservice/pepeservice
RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app ./
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY --from=builder /go/src/quenten.nl/pepeservice/pepeservice/app .
CMD ["./app"]