Skip to content

Commit 59e86ce

Browse files
committed
Install git-lfs in Docker
1 parent 6fc58ad commit 59e86ce

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Dockerfile-webviz-ci

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@ FROM node:10.22-slim
1313
# https://circleci.com/docs/2.0/custom-images/#required-tools-for-primary-containers
1414
RUN apt-get update && apt-get install -yq gnupg libgconf-2-4 wget git ssh --no-install-recommends
1515

16+
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash \
17+
&& sudo apt-get install git-lfs \
18+
&& git lfs install
19+
1620
# Install Google Chrome for Puppeteer.
1721
# https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker
1822
RUN wget --no-check-certificate -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
19-
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
20-
&& apt-get update \
21-
&& apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf --no-install-recommends
23+
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
24+
&& apt-get update \
25+
&& apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf --no-install-recommends
2226
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
2327

2428
ENV WEBVIZ_IN_DOCKER=true

packages/webviz-core/src/util/binaryObjects/binaryTranslation/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ FROM trzeci/emscripten:1.39.17-upstream
99
RUN apt-get update
1010
RUN apt-get -y install clang-format clang-tidy
1111

12+
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash \
13+
&& sudo apt-get install git-lfs \
14+
&& git lfs install

0 commit comments

Comments
 (0)