Skip to content

Commit

Permalink
Merge pull request knightcrawler-stremio#94 from aelfa/patch-2
Browse files Browse the repository at this point in the history
pgrep command is part of the procps package, installed in the builder stage, but it's not present in the final stage.
  • Loading branch information
Gabisonfire authored Feb 21, 2024
2 parents 4d862db + 62380e5 commit 92dc4c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/node/consumer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ RUN npm prune --omit=dev

FROM node:lts-buster-slim

# Install necessary packages, including procps
RUN apt update && apt install -y git procps && rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY --from=builder /app ./
Expand Down

0 comments on commit 92dc4c5

Please sign in to comment.