Dockerfile 메모
FROM node:20.10.0-alpine AS base
WORKDIR /usr/src/app
COPY ./ ./
RUN yarn build
EXPOSE 3000
CMD ["node", "server.js"]
참고링크
https://bedevelopers.tistory.com/266
https://taeho.io/pages/8013f2c9-2602-48a9-abf4-053c9ea1dbb2
'Docker' 카테고리의 다른 글
Springboot Docker 배포하기 (0) | 2023.12.30 |
---|---|
Docker 컨테이너 생성 이후 포트 포워딩 하기 (0) | 2023.12.29 |
Ubuntu 20.04 Docker 설치하고 사용하기 (0) | 2023.12.29 |