Skip to content

Instantly share code, notes, and snippets.

@gagansh7171
Created August 23, 2020 18:30
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 gagansh7171/0410d6d9bbd32016dd4f4bfd2d120816 to your computer and use it in GitHub Desktop.
Save gagansh7171/0410d6d9bbd32016dd4f4bfd2d120816 to your computer and use it in GitHub Desktop.
Frontend Dockerfile
FROM node:13.12.0-alpine
WORKDIR /app/frontend
COPY package.json package-lock.json ./
RUN npm install
RUN npm install react-scripts@3.4.1 -g
COPY . ./
EXPOSE 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment