diff --git a/Dockerfile b/Dockerfile index 2009fa4fc..dff68dfa6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,20 +10,20 @@ ARG home # create group and user to match permmisions of current who runs the build ARG workdir WORKDIR ${workdir} -RUN groupmod -g 64 dialout \ - && addgroup -S -g "${group_id}" union \ - && groupmod -g 2999 ping \ - && mkdir -p "${home}" \ - && adduser -S -u "${user_id}" -h "${home}" -s "/bin/bash" -G union builder +RUN groupmod -g 64 dialout && + addgroup -S -g "${group_id}" union && + groupmod -g 2999 ping && + mkdir -p "${home}" && + adduser -S -u "${user_id}" -h "${home}" -s "/bin/bash" -G union builder # Add pip and build requirements RUN apk add --no-cache \ - bash \ - curl \ - docker \ - gcc \ - git \ - libc-dev \ - make + bash \ + curl \ + docker \ + gcc \ + git \ + libc-dev \ + make COPY --chown=builder:union requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt --require-hashes USER builder @@ -35,4 +35,4 @@ RUN pipenv --python "$(which python)" install --no-cache-dir --ignore-pipfile -- ENTRYPOINT ["/usr/local/bin/pipenv"] FROM mvdan/shfmt@sha256:caa0324bdba08f42452a19e6a8462dda9852a1e43ad16185ec3d1ad66524a504 AS shfmt -ENTRYPOINT ["/bin/shfmt"] \ No newline at end of file +ENTRYPOINT ["/bin/shfmt"] diff --git a/cornucopia.owasp.org/data/website/pages/about/index.md b/cornucopia.owasp.org/data/website/pages/about/en/index.md similarity index 100% rename from cornucopia.owasp.org/data/website/pages/about/index.md rename to cornucopia.owasp.org/data/website/pages/about/en/index.md