back to alpine, don't need cgo anyway
continuous-integration/drone/push Build is passing Details

This commit is contained in:
stryan 2023-05-16 18:47:45 -04:00
parent d30093a39e
commit ccabfd7810
1 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@ FROM golang:1.20 as builder
WORKDIR /go/src/app
COPY . .
RUN apt update && apt upgrade -y
RUN go build
RUN CGO_ENABLED=0 go build
FROM debian:stable-slim as final
FROM alpine:latest as final
WORKDIR /srv/
RUN mkdir /srv/simpbot
RUN mkdir -p /lib64