mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
Add Git LFS
This commit is contained in:
parent
2999f2226b
commit
d26edd8ddc
4 changed files with 40 additions and 0 deletions
|
|
@ -36,6 +36,13 @@ ARG INSTALL_GOLANG_VERSION
|
|||
ARG GOLANG_DOWNLOAD_SHA256
|
||||
RUN if [ -n "$INSTALL_GOLANG_VERSION" ] ; then /scripts/install-golang "${INSTALL_GOLANG_VERSION}" "${GOLANG_DOWNLOAD_SHA256}" && go version; fi
|
||||
|
||||
# Git LFS (https://git-lfs.github.com/)
|
||||
ARG LFS_VERSION
|
||||
ARG LFS_DOWNLOAD_URL=https://github.com/git-lfs/git-lfs/releases/download/v${LFS_VERSION}/git-lfs-linux-amd64-v${LFS_VERSION}.tar.gz
|
||||
ARG LFS_DOWNLOAD_SHA256
|
||||
|
||||
RUN if [ -n "$LFS_VERSION" ]; then /scripts/install-lfs && git lfs --version; fi
|
||||
|
||||
# Postgres
|
||||
ARG POSTGRES_VERSION
|
||||
RUN if [ -n "$POSTGRES_VERSION" ] ; then /scripts/install-postgresql $POSTGRES_VERSION; fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue