mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
Resolve "pgrep: not found" issue
Resolve "pgrep: not found" issue Added installation of the procps package in the builder stage to ensure the pgrep command is available in the final Docker image. This resolves the "pgrep: not found" issue in the HEALTHCHECK.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
FROM node:lts-buster-slim as builder
|
||||
|
||||
RUN apt update && apt install -y git && rm -rf /var/lib/apt/lists/*
|
||||
RUN apt update && apt install -y git procps && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
Reference in New Issue
Block a user