瀏覽代碼

Merge pull request #16622 from SebLz/fix/arbitrary-uid

Fix/arbitrary uid
Tim Jaeryang Baek 1 月之前
父節點
當前提交
dfc9412117
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      Dockerfile

+ 9 - 0
Dockerfile

@@ -160,6 +160,15 @@ EXPOSE 8080
 
 HEALTHCHECK CMD curl --silent --fail http://localhost:${PORT:-8080}/health | jq -ne 'input.status == true' || exit 1
 
+# Minimal, atomic permission hardening for OpenShift (arbitrary UID):
+# - Group 0 owns /app and /root
+# - Directories are group-writable and have SGID so new files inherit GID 0
+RUN set -eux; \
+    chgrp -R 0 /app /root || true; \
+    chmod -R g+rwX /app /root || true; \
+    find /app -type d -exec chmod g+s {} + || true; \
+    find /root -type d -exec chmod g+s {} + || true
+
 USER $UID:$GID
 
 ARG BUILD_HASH