0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

コンテナにgitの指定バージョンをインストールする

Posted at

指定バージョンをインストールする為に make を行います。
その為、ビルドには時間がかかります。

ARG GIT_VERSION=2.34.0
ARG DIR_TMP=/tmp/

# libcurl4-gnutls-dev, libexpat1-dev, gettext, libz-dev, libssl-dev はgitのmake時に必要になります。
RUN apt-get install -y \
        curl \
        libcurl4-gnutls-dev \
        libexpat1-dev \
        gettext \
        libz-dev \
        libssl-dev

RUN cd ${DIR_TMP} \
    && curl -o ${DIR_TMP}git-v${GIT_VERSION}.tar.gz -OL https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz \
    && tar -zxf git-v${GIT_VERSION}.tar.gz \
    && cd git-${GIT_VERSION} \
    && make prefix=/usr all \
    && make prefix=/usr install

GIT_VERSION はdocker-compose.ymlに記載することも可能です

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?