Skip to content

Instantly share code, notes, and snippets.

@harryWonder
Created June 10, 2021 17:22
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 harryWonder/45c5fd465ddddb36ff860c163d8275b8 to your computer and use it in GitHub Desktop.
Save harryWonder/45c5fd465ddddb36ff860c163d8275b8 to your computer and use it in GitHub Desktop.
LD NodeJS & Nginx
FROM node:15.12.0-alpine3.10
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 4400
CMD ["node", "index.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment