#!/usr/bin/env bash #------------------------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- # # Docs: https://github.com/microsoft/vscode-dev-containers/blob/master/script-library/docs/git-lfs.md # # Syntax: ./git-lfs-debian.sh set -e if [ "$(id -u)" -ne 0 ]; then echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' exit 1 fi export DEBIAN_FRONTEND=noninteractive # Install git and curl if missing if ! dpkg -s git curl ca-certificates > /dev/null 2>&1; then if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then apt-get update fi apt-get -y install --no-install-recommends git curl ca-certificates fi # Install Git LFS echo "Downloading Git LFS..." curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash echo "Installing Git LFS..." apt-get install -yq git-lfs git lfs install echo "Done!"