Skip to content

Instantly share code, notes, and snippets.

@erikerlandson
Created October 15, 2020 18:51
Show Gist options
  • Save erikerlandson/56ee23ae2a5a89cf3c7d551ffcf6e7eb to your computer and use it in GitHub Desktop.
Save erikerlandson/56ee23ae2a5a89cf3c7d551ffcf6e7eb to your computer and use it in GitHub Desktop.
notes
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.1
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en'
RUN microdnf install nodejs npm nodejs-nodemon nss_wrapper \
&& microdnf update \
&& microdnf clean all \
&& mkdir /deployments \
&& chown 1001 /deployments \
&& chmod "g+rwX" /deployments \
&& chown 1001:root /deployments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment