Skip to content

Instantly share code, notes, and snippets.

@agusrichard
Created November 4, 2021 20:08
Show Gist options
  • Select an option

  • Save agusrichard/3dd81a8df1d0077a49838692da2aa4d2 to your computer and use it in GitHub Desktop.

Select an option

Save agusrichard/3dd81a8df1d0077a49838692da2aa4d2 to your computer and use it in GitHub Desktop.
FROM node
WORKDIR /usr/app
COPY package*.json ./
RUN npm install
COPY . ./
EXPOSE 5000
CMD npm run dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment