Merge pull request #5452 from foarsitter/wait-for-it

wait-for-it as dependency in the run stage
This commit is contained in:
Jelmer 2024-10-11 11:45:18 +02:00 committed by GitHub
commit 2eb0b22530
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,8 +37,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
# dependencies for building Python packages
build-essential \
# psycopg dependencies
libpq-dev \
wait-for-it
libpq-dev
# Requirements are installed here to ensure they will be cached.
COPY ./requirements .
@ -70,6 +70,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
libpq-dev \
# Translations dependencies
gettext \
# entrypoint
wait-for-it \
# cleaning up unused files
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& rm -rf /var/lib/apt/lists/*