Skip to content

Instantly share code, notes, and snippets.

@abraham218
Created September 28, 2023 16:45
Show Gist options
  • Select an option

  • Save abraham218/1d6f1f92fd4b98d6de434673dd8a36df to your computer and use it in GitHub Desktop.

Select an option

Save abraham218/1d6f1f92fd4b98d6de434673dd8a36df to your computer and use it in GitHub Desktop.
FROM node:12.17.0
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV PORT=3000
EXPOSE 3000
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment