Created
August 23, 2020 18:30
-
-
Save gagansh7171/0410d6d9bbd32016dd4f4bfd2d120816 to your computer and use it in GitHub Desktop.
Frontend Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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