What should I change in this Dockerfile to differentiate host and container user permissions?
With the aim of avoiding root user running in the container, I've got the following Dockerfile: FROM public.ecr.aws/docker/library/node:14-alpine AS deps RUN apk add --no-cache libc6-compat curl && addgroup --system --gid 1001 app_user && adduser --system --uid 1001 app_user RUN mkdir…