Skip to content

Instantly share code, notes, and snippets.

@rm3l
Created July 22, 2022 15:55
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 rm3l/d14740f7015b1ff123d5e79162ba35bd to your computer and use it in GitHub Desktop.
Save rm3l/d14740f7015b1ff123d5e79162ba35bd to your computer and use it in GitHub Desktop.
FROM quay.io/phmartin/node:17
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "node", "server.js" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment