Skip to content

Instantly share code, notes, and snippets.

@naveed125
Created May 2, 2020 20:03
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 naveed125/e1c54816143a82c694faf8cf24ebf5d1 to your computer and use it in GitHub Desktop.
Save naveed125/e1c54816143a82c694faf8cf24ebf5d1 to your computer and use it in GitHub Desktop.
Client Dockerfile for React Application
FROM node:13.12.0-alpine
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json /app
RUN npm install --silent
COPY . /app
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment