Skip to content

Commit 28179b6

Browse files
committed
fix: add ps utils for health check
1 parent 712cc28 commit 28179b6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ ENV PATH="$VENV_PATH/bin:$PATH"
1212

1313
WORKDIR $APP_PATH
1414

15-
RUN useradd -ms /bin/bash sentry
15+
RUN useradd -ms /bin/bash sentry \
16+
&& apt-get update \
17+
&& apt-get install -y --no-install-recommends procps \
18+
&& apt-get clean \
19+
&& rm -rf /var/lib/apt/lists/*
1620

1721

1822
# Build

0 commit comments

Comments
 (0)