안녕하세요. 오늘은 Github의 Github Actions를 이용하여 Docker Image Build 및 Push 하는 방법에 대해 소개해보고자 합니다. 준비물 Github 계정과 Repository Docker Hub 계정과 Repository 저는 아래와 같이 Dockerfile을 작성했습니다. FROM node:erbium-buster-slim LABEL "repository"="https://github.com/teichae/github-action" LABEL "maintainer"="tei.chae " RUN set -eux ; \ apt-get update -y; \ apt-get install --no-install-recommends -y \ tzdata; \ ln -sf /usr/s..
Github Actions를 이용한 Docker Image Build 및 Push
안녕하세요. 오늘은 Github의 Github Actions를 이용하여 Docker Image Build 및 Push 하는 방법에 대해 소개해보고자 합니다. 준비물 Github 계정과 Repository Docker Hub 계정과 Repository 저는 아래와 같이 Dockerfile을 작성했습니다. FROM node:erbium-buster-slim LABEL "repository"="https://github.com/teichae/github-action" LABEL "maintainer"="tei.chae " RUN set -eux ; \ apt-get update -y; \ apt-get install --no-install-recommends -y \ tzdata; \ ln -sf /usr/s..
2020.12.09