Skip to content

Instantly share code, notes, and snippets.

@boltathi24
Created July 27, 2021 18:02
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 boltathi24/54baf4ab6d338869176bddc2007b5a35 to your computer and use it in GitHub Desktop.
Save boltathi24/54baf4ab6d338869176bddc2007b5a35 to your computer and use it in GitHub Desktop.
DockerFile for React App
# pull official base image
FROM node:13.12.0-alpine
# set working directory
WORKDIR /app
# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH
# install app dependencies
COPY package.json ./
COPY package-lock.json ./
RUN npm install
# add app
COPY . ./
# start react app
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment