Skip to content

Instantly share code, notes, and snippets.

@nicoclau
Created June 25, 2022 20:27
Show Gist options
  • Select an option

  • Save nicoclau/81ab94ba74106b51bcd1fcc2f809f03f to your computer and use it in GitHub Desktop.

Select an option

Save nicoclau/81ab94ba74106b51bcd1fcc2f809f03f to your computer and use it in GitHub Desktop.
Dockerfile
# pull official base image
FROM node:16.9.1-alpine3.14
# set working directory
WORKDIR /reactapp
# install app dependencies
COPY package.json ./
COPY package-lock.json ./
RUN npm install --silent
# add app
COPY . ./
# start app
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment