-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
63 lines (50 loc) · 2.66 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
##############################################################################
# Use Ubuntu 18.04
##############################################################################
FROM ubuntu:18.04
WORKDIR /usr/src/prisma
COPY . .
##############################################################################
# Setting environment variables
##############################################################################
ENV NODE_ENV development
ENV NVM_DIR /root/.nvm
ENV NODE_VERSION 10.15.0
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
##############################################################################
# This forces the image to be build on every push!
##############################################################################
ARG CACHEBUST=0
##############################################################################
# Switch to bash
##############################################################################
SHELL ["/bin/bash", "--login", "-c"]
##############################################################################
# Install dependencies from Ubuntu
##############################################################################
RUN apt update --fix-missing && \
apt install -y curl vim wget apt-utils gnupg2 xvfb libxtst6 libnss3 libgtk-3-0 libxss1 libasound2 && \
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash && \
source $NVM_DIR/nvm.sh && \
nvm install $NODE_VERSION
##############################################################################
# confirm installation of node
##############################################################################
RUN node -v
RUN npm -v
##############################################################################
# Install yarn
##############################################################################
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt update && apt install -y yarn
##############################################################################
# Install Google Chrome
##############################################################################
RUN apt install -y libappindicator1 fonts-liberation libgbm1 xdg-utils
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && dpkg -i google-chrome-stable_current_amd64.deb
##############################################################################
# Install project dependencies
##############################################################################
RUN npm install -g @sherlog/cli && yarn install
CMD [ "./tests/run.sh"]