Skip to content

Instantly share code, notes, and snippets.

@SumonMSelim
Created June 6, 2020 12:38
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 SumonMSelim/de1a16357980e79ff6d7d32785495d93 to your computer and use it in GitHub Desktop.
Save SumonMSelim/de1a16357980e79ff6d7d32785495d93 to your computer and use it in GitHub Desktop.
dockerfile for node
FROM node:lts
ENV APP_NAME "app"
ENV HOME /home
ENV APP_DIR $HOME/$APP_NAME
RUN mkdir $APP_DIR
WORKDIR $APP_DIR
EXPOSE 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment