Github Container Registry 사용과 Github Action을 통한 CI 연습
- Dockerfile로 이미지 빌드
- CI를 위한 GithubAction pipeline 작성
- Github Container Registry에 자동으로 이미지 Push
code commit & push -> Build Dockerfile -> image -> Push to ghcr.io
docker build -t <IMAGENAME> .
docker run --rm -d -p HOSTPORT:CONTAINERPORT ghcr.io/namhj94/<IMAGENAME>