pepebot/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

13 lines
356 B
Docker

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