File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 3535 ENV KMS_RENEWALINTERVAL=259200
3636 ENV KMS_LOGLEVEL="INFO"
3737
38+ ENV PIP_ROOT_USER_ACTION=ignore
39+
3840 # :: multi-stage
3941 COPY --from=util /usr/local/bin /usr/local/bin
4042 COPY --from=build /git/py-kms/py-kms /opt/py-kms
5254
5355 RUN set -ex; \
5456 mkdir -p ${APP_ROOT}/var; \
55- pip3 install --no-cache-dir -r /opt/py-kms/requirements.txt --break-system-packages ; \
56- pip3 install --no-cache-dir pytz --break-system-packages ; \
57- pip3 list -o | cut -f1 -d' ' | tr " " "\n " | awk '{if(NR>=3)print}' | cut -d' ' -f1 | xargs -n1 pip3 install -U --break-system-packages ; \
57+ pip3 install --no-cache-dir -r /opt/py-kms/requirements.txt; \
58+ pip3 install --no-cache-dir pytz; \
59+ pip3 list -o | cut -f1 -d' ' | tr " " "\n " | awk '{if(NR>=3)print}' | cut -d' ' -f1 | xargs -n1 pip3 install --no-cache-dir -U ; \
5860 apk del --no-network .build;
5961
6062 # :: copy filesystem changes and set correct permissions
You can’t perform that action at this time.
0 commit comments