Skip to content

Commit 4b0094b

Browse files
authored
chore: install git lfs in dev container (#33468)
### Issue # (if applicable) Closes #33461 . ### Reason for this change Because git lfs is not installed in devcontainer. ### Description of changes install git lfs on dev container. ### Describe any new or updated permissions being added ### Description of how you validated changes ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 085c2e3 commit 4b0094b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ USER root
44

55
# Setup oh-my-zsh
66
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
7-
&& apt-get -y install --no-install-recommends zsh vim \
7+
&& apt-get -y install --no-install-recommends zsh vim git-lfs \
88
&& rm -rf /var/lib/apt/lists/* \
9+
&& git lfs install \
910
&& chsh -s $(which zsh) superchain
1011

1112
# Required, otherwise shell is extermly slow due the size of the aws-cdk

0 commit comments

Comments
 (0)