Browse Source

fix: add example OpenShift-compatible Dockerfile. (#948)

Brent Sharrow 5 years ago
parent
commit
5622286856
1 changed files with 8 additions and 0 deletions
  1. 8 0
      dev/openshift/Dockerfile

+ 8 - 0
dev/openshift/Dockerfile

@@ -0,0 +1,8 @@
+FROM requarks/wiki:beta
+
+USER root
+
+RUN chgrp -R 0 /wiki /logs && \
+    chmod -R g=u /wiki /logs
+
+USER 1001