We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8712f7e commit c4a2b57Copy full SHA for c4a2b57
Dockerfile
@@ -22,6 +22,10 @@ RUN PIPENV_VENV_IN_PROJECT=1 pipenv install --deploy
22
23
FROM base AS runtime
24
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
+
29
# Create and switch to a new user
30
RUN useradd --create-home --uid 1001 --gid 0 appuser
31
WORKDIR /home/appuser
0 commit comments