forked from vikramIde/airgap-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
49 lines (37 loc) · 1.53 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
FROM node:10
# See https://crbug.com/795759
RUN apt-get update && apt-get install -yq libgconf-2-4 bzip2 build-essential
RUN apt-get install -yq git
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# 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 fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont libxss1 \
--no-install-recommends --allow-unauthenticated \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get purge --auto-remove -y curl \
&& rm -rf /src/*.deb
# create app directory
RUN mkdir /app
WORKDIR /app
# Install app dependencies, using wildcard if package-lock exists
COPY package.json /app
COPY package-lock.json /app
# install dependencies
RUN npm install
# install static webserver
RUN npm install node-static -g
# browserify coin-lib
RUN npm run browserify-coinlib
# Bundle app source
COPY . /app
# set to production
RUN export NODE_ENV=production
# post-install hook, to be safe if it got cached
RUN node config/patch_crypto.js
# build
RUN npx ionic build --prod
CMD ["static", "-p", "8100", "-a", "0.0.0.0", "www"]