From 889151712edc743afee0f62e3107368eb81c2e4f Mon Sep 17 00:00:00 2001 From: sasgas Date: Thu, 19 Aug 2021 17:09:02 +0900 Subject: [PATCH] minor fix --- Dockerfile | 2 ++ README.md | 5 +---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 86c03b4..a552bb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ # Pull base image FROM centos:7 +LABEL org.opencontainers.image.source https://github.com/castisdev/docker-centos7-legacy + # Install EPEL repo RUN yum install -y epel-release; yum -y clean all diff --git a/README.md b/README.md index 8fd7f01..dfd7129 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,8 @@ [centos:centos7-legacy](https://registry.hub.docker.com/_/centos/)를 기반으로 C++ 개발 및 빌드 환경을 갖춘 [Docker](https://www.docker.com/) 이미지를 만드는 **Dockerfile**입니다. -이 저장소의 **Dockerfile**은 [자동 빌드](https://registry.hub.docker.com/u/castis/centos7-legacy/) 되어 [Docker Hub Registry](https://registry.hub.docker.com/)로 공개됩니다. - - ### 사용하기 ``` -$ sudo docker run -it --rm castis/centos7-legacy +$ sudo docker run -it --rm ghcr.io/castisdev/centos7-legacy:1.9 ```