Skip to content

Commit

Permalink
ci: fix docker build and publish stage
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoloklom committed Nov 22, 2024
1 parent 44d516b commit 00cb980
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ COPY . .
RUN npm run build:pkg && ./scripts/generate-sea.sh /bin/dclint

# Collect platform-specific dependencies
SHELL ["/bin/sh", "-o", "pipefail", "-c"]
RUN mkdir -p /dependencies/lib /dependencies/usr/lib && \

Check failure on line 15 in Dockerfile

View workflow job for this annotation

GitHub Actions / tests

DL4006 warning: Set the SHELL option -o pipefail before RUN with a pipe in it. If you are using /bin/sh in an alpine image or if your shell is symlinked to busybox then consider explicitly setting your SHELL to /bin/ash, or disable this check
ldd /bin/dclint | awk '{print $3}' | grep -vE '^$' | while read -r lib; do \
if [ -f "$lib" ]; then \
Expand Down

0 comments on commit 00cb980

Please sign in to comment.