From dcdb28b360113202240f61c0c935d5642319c3f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Wed, 18 Jan 2023 00:49:52 +0000 Subject: [PATCH] add git-lfs to devcontainer --- ui/.devcontainer/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/.devcontainer/Dockerfile b/ui/.devcontainer/Dockerfile index b355ae2..cdad778 100644 --- a/ui/.devcontainer/Dockerfile +++ b/ui/.devcontainer/Dockerfile @@ -5,6 +5,9 @@ FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} # [Optional] Uncomment this section to install additional OS packages. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ # && apt-get -y install --no-install-recommends +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ + && apt-get -y install --no-install-recommends git-lfs \ + && su node -c "git lfs install" # [Optional] Uncomment if you want to install an additional version of node using nvm # ARG EXTRA_NODE_VERSION=10