From 8d73d0fad17daa027855b3c7a64ee9fcd8199fe0 Mon Sep 17 00:00:00 2001 From: Neal Beeken Date: Fri, 7 Feb 2025 12:46:24 -0500 Subject: [PATCH] chore: remove vim from musl docker file build --- .github/docker/Dockerfile.musl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/docker/Dockerfile.musl b/.github/docker/Dockerfile.musl index 8fca6ed..f7f4b64 100644 --- a/.github/docker/Dockerfile.musl +++ b/.github/docker/Dockerfile.musl @@ -7,7 +7,7 @@ FROM ${PLATFORM}/node:${NODE_VERSION}-alpine AS build WORKDIR /zstd COPY . . -RUN apk --no-cache add make g++ libc-dev curl bash python3 py3-pip vim cmake +RUN apk --no-cache add make g++ libc-dev curl bash python3 py3-pip cmake RUN npm run install-zstd && npm i RUN npm run prebuild @@ -17,4 +17,4 @@ RUN if [ -n "$RUN_TEST" ]; then npm test ; else echo "skipping tests" ; fi FROM scratch -COPY --from=build /zstd/prebuilds/ / \ No newline at end of file +COPY --from=build /zstd/prebuilds/ /