Skip to content

Instantly share code, notes, and snippets.

@ShawonAshraf
Created May 12, 2020 22:28
Show Gist options
  • Select an option

  • Save ShawonAshraf/e1b13419e7a78004284077c33b29a31a to your computer and use it in GitHub Desktop.

Select an option

Save ShawonAshraf/e1b13419e7a78004284077c33b29a31a to your computer and use it in GitHub Desktop.
node-express docker medium
FROM node:10.11-alpine
WORKDIR /usr/app
COPY . .
RUN npm install
EXPOSE $PORT
CMD [ "npm", "run", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment