Docker와 docker-compose를 활용하여 deploy를 원활하게 할 수 있다.

Docker와 docker-compose를 활용하여 deploy를 원활하게 할 수 있다.
FROM node:14-alpine AS builderWORKDIR /appCOPY package.json ./RUN npm installCOPY . .RUN npm run buildFROM nginx:1.19-alpine AS serverCOPY --from=builder ./app/build /usr/share/nginx/htmlRUN rm /etc/nginx/conf.d/default.confCOPY nginx/nginx.conf /etc/nginx/conf.d# Inform Docker that the container is listening on the specified port at runtime.EXPOSE 80CMD ["nginx", "-g", "daemon off;"]
server {listen 80;location / {root /usr/share/nginx/html;index index.html index.htm;try_files $uri $uri/ /index.html;}error_page 500 502 503 504 /50x.html;location = /50x.html {root /usr/share/nginx/html;}}