File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
packages/webviz-core/src/util/binaryObjects/binaryTranslation Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff 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
1414RUN 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 | bash \
17+ && 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
1822RUN 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
2226ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
2327
2428ENV WEBVIZ_IN_DOCKER=true
Original file line number Diff line number Diff line change @@ -9,3 +9,6 @@ FROM trzeci/emscripten:1.39.17-upstream
99RUN apt-get update
1010RUN apt-get -y install clang-format clang-tidy
1111
12+ RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \
13+ && apt-get install git-lfs \
14+ && git lfs install
You can’t perform that action at this time.
0 commit comments