Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add git-lfs to setup process #758

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add git-lfs to setup.
  • Loading branch information
AramZS authored Jun 1, 2022
commit 7ee318634e6e3e9ee23ab9e8d452d132b149010f
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@ RUN apt-get update && \
curl \
wget \
ssh \
git-lfs \
vim && \
apt-get autoclean && \
apt-get clean && \
@@ -19,7 +20,8 @@ RUN apt-get update && \

RUN git --version && \
git config --global init.defaultBranch main && \
git config --global init.defaultBranch
git config --global init.defaultBranch && \
git lfs install

WORKDIR /node
ARG NODE_VERSION