Created
September 13, 2020 23:57
-
-
Save diegomais/e73fef20808251885a86ee4cbe9af9d5 to your computer and use it in GitHub Desktop.
React
This file contains hidden or 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:12 AS build | |
WORKDIR /app | |
COPY package* yarn.lock ./ | |
RUN yarn install | |
COPY public ./public | |
COPY src ./src | |
RUN yarn run build | |
FROM nginx:alpine | |
COPY --from=build /app/build /usr/share/nginx/html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment