Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/docker/Dockerfile.musl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -17,4 +17,4 @@ RUN if [ -n "$RUN_TEST" ]; then npm test ; else echo "skipping tests" ; fi

FROM scratch

COPY --from=build /zstd/prebuilds/ /
COPY --from=build /zstd/prebuilds/ /
Loading