fix: dockerfile

This commit is contained in:
boojack 2022-07-03 22:45:10 +08:00
parent f743532e57
commit 3f3f6eaee8

View File

@ -11,6 +11,9 @@ RUN yarn build
FROM golang:1.18.3-alpine3.16 AS backend
WORKDIR /backend-build
RUN apk update
RUN apk --no-cache add gcc musl-dev
COPY . .
RUN go build \