-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (26 loc) · 1 KB
/
Copy pathDockerfile
File metadata and controls
32 lines (26 loc) · 1 KB
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
FROM node:9.2.0-slim
LABEL author="Claudia Valdivieso <claudia.valdivieso@orbis.com.pe"
ENV VERSION 1.0
ENV USR_LOCAL=/usr/local
ENV APP_DIR=$USR_LOCAL/app
RUN chmod 775 -R $USR_LOCAL && \
mkdir $APP_DIR
# Install latest chrome dev package.
# Note: this installs the necessary libs to make the bundled version of Chromium that Pupppeteer
# installs, work.
RUN apt-get update && 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/* \
&& apt-get purge --auto-remove -y curl \
&& rm -rf /src/*.deb
COPY task/ $USR_LOCAL
COPY package.json $USR_LOCAL
COPY yarn.lock $USR_LOCAL
RUN cd $USR_LOCAL && \
yarn install
WORKDIR $USR_LOCAL
VOLUME $APP_DIR