From dfaba5bb17d9e460ce43cf12b9b7033900ac425d Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Wed, 7 Dec 2022 15:51:54 +0100 Subject: [PATCH] No need for two commands here --- core/base/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/base/Dockerfile b/core/base/Dockerfile index 9f0b204f..e3e53dc6 100644 --- a/core/base/Dockerfile +++ b/core/base/Dockerfile @@ -80,8 +80,7 @@ FROM system COPY --from=build /app/venv/ /app/venv/ COPY --chown=root:root --from=build /app/snuffleupagus.so /usr/lib/php81/modules/ -RUN setcap 'cap_net_bind_service=+ep' /app/venv/bin/gunicorn \ - ; setcap 'cap_net_bind_service=+ep' /usr/bin/python3.10 +RUN setcap 'cap_net_bind_service=+ep' /app/venv/bin/gunicorn 'cap_net_bind_service=+ep' /usr/bin/python3.10 ENV VIRTUAL_ENV=/app/venv ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"