skip to Main Content

How to run Apache as non-root user?

I'm building an image from the following Dockerfile and following command docker build --rm -f "Dockerfile" -t non_root_image_plz_work .: DockerFile FROM node:14.7.0-buster-slim AS apache_for_selenium # Create non-root group and user RUN addgroup --system shared-folder && adduser --system --home /var/cache/shared-folder --group…

VIEW QUESTION
Back To Top
Search