Skip to content

Commit c4a2b57

Browse files
committed
Added back apt package installs.
Signed-off-by: Charles Johnson <[email protected]>
1 parent 8712f7e commit c4a2b57

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ RUN PIPENV_VENV_IN_PROJECT=1 pipenv install --deploy
2222

2323
FROM base AS runtime
2424

25+
# Install extra packages
26+
RUN apt-get update && \
27+
apt-get install -y postgresql-client=11+200+deb10u4 iputils-ping=3:20180629-2+deb10u2 curl=7.64.0-4+deb10u2 && rm -rf /var/lib/apt/lists/*
28+
2529
# Create and switch to a new user
2630
RUN useradd --create-home --uid 1001 --gid 0 appuser
2731
WORKDIR /home/appuser

0 commit comments

Comments
 (0)