Skip to content

Instantly share code, notes, and snippets.

@ludovicwyffels
Last active June 24, 2018 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ludovicwyffels/b010c5e5ab987804b89dff82ed98cf45 to your computer and use it in GitHub Desktop.
Save ludovicwyffels/b010c5e5ab987804b89dff82ed98cf45 to your computer and use it in GitHub Desktop.
FROM node:8
RUN groupadd -r nodejs && useradd -m -r -g -s /bin/bash nodejs nodejs
USER nodejs
WORKDIR /home/nodejs/app
COPY package.json .
RUN npm install --production
COPY . .
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment