Lines Matching +full:docker +full:- +full:image
1 Docker chapter
4 Docker files to ease working with PathKit and CanvasKit.
6 emsdk-base
7 ----------
9 This image has an Emscripten SDK environment that can be used for
12 This image tracks the official emscripten Docker image and installs
17 For testing the image locally, the following flow can be helpful:
19 docker build -t emsdk-base ./emsdk-base/
21 docker run -it emsdk-base /bin/bash
22 # Compile PathKit with the local image
23 …docker run -v $SKIA_ROOT:/SRC -v $SKIA_ROOT/out/dockerpathkit:/OUT emsdk-base /SRC/infra/pathkit/b…
25 karma-chrome-tests
26 ------------------
28 This image has Google Chrome and karma/jasmine installed on it, which can
31 This image is standalone and does not have any extra dependencies that make
32 it Skia-exclusive.
40 using the default Docker settings. To be safe, it is recommended to run the container
41 with the flag --shm-size=2gb.
43 For testing the image locally, the following can be helpful:
45 docker build -t karma-chrome-tests ./karma-chrome-tests/
47 docker run -it --shm-size=2gb karma-chrome-tests /bin/bash
49 …docker run --shm-size=2gb -v $SKIA_ROOT:/SRC karma-chrome-tests karma start /SRC/infra/pathkit/kar…
51 gold-karma-chrome-tests
52 ------------------
54 This image has Google Chrome and karma/jasmine installed on it, which can
57 This image assumes the runner wants to collect the output images and JSON data
58 specific to Skia Infra's Gold tool (image correctness).
61 image (karma-chrome-tests).
67 using the default Docker settings. To be safe, it is recommended to run the container
68 with the flag --shm-size=2gb.
70 For testing the image locally, the following can be helpful:
73 make gold-docker-image
75 docker run -it --shm-size=2gb gold-karma-chrome-tests /bin/bash
77 mkdir -p -m 0777 /tmp/dockergold
78 …docker run --shm-size=2gb -v $SKIA_ROOT:/SRC -v /tmp/dockergold:/OUT gold-karma-chrome-tests /SRC/…
80 perf-karma-chrome-tests
81 ------------------
83 This image has Google Chrome and karma/jasmine installed on it, which can
86 This image assumes the runner wants to collect the output images and JSON data
90 image (karma-chrome-tests).
96 using the default Docker settings. To be safe, it is recommended to run the container
97 with the flag --shm-size=2gb.
99 For testing the image locally, the following can be helpful:
102 make perf-docker-image
104 docker run -it --shm-size=2gb perf-karma-chrome-tests /bin/bash
106 mkdir -p -m 0777 /tmp/dockerperf
107 …docker run --shm-size=2gb -v $SKIA_ROOT:/SRC -v /tmp/dockerperf:/OUT perf-karma-chrome-tests /SRC/…