From 69225b507bdfb9689aa575939eacc5efcde2ab8e Mon Sep 17 00:00:00 2001 From: Athurg Gooth Date: Thu, 1 Jun 2023 20:16:13 +0800 Subject: [PATCH] chore: clean Dockerfile to exclude musl-dev (#1787) Clean Dockerfile to exclude musl-dev install Co-authored-by: Athurg Feng --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d1270fadc..3306921a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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