-
Notifications
You must be signed in to change notification settings - Fork 222
/
Dockerfile
34 lines (25 loc) · 1.14 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Docker Image for BuildKite CI
# -----------------------------
FROM node:10.20
WORKDIR /streetscape
RUN yarn global add [email protected]
WORKDIR /streetscape
ENV PATH /streetscape/node_modules/.bin:$PATH
ENV DISPLAY :99
RUN apt-get update
# required by lint script
RUN apt-get -y install jq
# https://github.com/buildkite/docker-puppeteer/blob/master/Dockerfile
RUN apt-get update \
# Install latest chrome dev package, which installs the necessary libs to
# make the bundled version of Chromium that Puppeteer installs work.
&& apt-get install -y wget --no-install-recommends \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-unstable --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& wget --quiet https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -O /usr/sbin/wait-for-it.sh \
&& chmod +x /usr/sbin/wait-for-it.sh
COPY . /streetscape/
RUN cd /streetscape/ && yarn bootstrap