pepebot/pepeservice/Dockerfile
DutchEllie fd624c6440
Some checks failed
continuous-integration/drone/push Build is failing
Maybe this?
2022-05-11 15:01:54 +02:00

14 lines
371 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
COPY ./build/app /root
WORKDIR /root
CMD ["./app"]