chore: clean Dockerfile to exclude musl-dev (#1787)

Clean Dockerfile to exclude musl-dev install

Co-authored-by: Athurg Feng <athurg@gooth.org>
This commit is contained in:
Athurg Gooth 2023-06-01 20:16:13 +08:00 committed by GitHub
parent 2f905eed0d
commit 69225b507b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,8 +14,6 @@ RUN pnpm build
FROM golang:1.19.3-alpine3.16 AS backend
WORKDIR /backend-build
RUN apk update && apk add --no-cache gcc musl-dev
COPY . .
COPY --from=frontend /frontend-build/dist ./server/dist