Peter il a la méga chiasse
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Antoine Bartuccio 2020-05-18 21:23:59 +02:00
parent af08e14b88
commit 92dade1312
Signed by: klmp200
GPG Key ID: E7245548C53F904B
1 changed files with 3 additions and 5 deletions

View File

@ -6,16 +6,14 @@ WORKDIR /build
# Copy the code from the host and compile it # Copy the code from the host and compile it
COPY . . COPY . .
RUN go build
RUN mkdir res RUN mkdir res
COPY quotes.json res/quotes.json COPY quotes.json res/quotes.json
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix nocgo -o /app . RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix nocgo -o /app .
# We use Alpine for it's ca-certificates needed by http lib FROM scratch
FROM alpine:latest # We need ca-certifactes for http calls
RUN apk add --no-cache ca-certificates apache2-utils COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=builder /app ./ COPY --from=builder /app ./
COPY --from=builder /build/res ./ COPY --from=builder /build/res ./