forked from polkascan/polkascan-explorer-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
executable file
·64 lines (41 loc) · 1.54 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
64
### STAGE 1: Build ###
# We label our stage as ‘builder’
FROM node:10-alpine as builder
COPY package.json package-lock.json ./
## Storing node modules on a separate layer will prevent unnecessary npm installs at each build
RUN npm ci && mkdir /ng-app && mv ./node_modules ./ng-app
WORKDIR /ng-app
COPY . /ng-app/
RUN ls /ng-app/src/
## Build the angular app in production mode and store the artifacts in dist folder
ARG DISCOVERY_API_URL=https://discovery.polkascan.io
ENV DISCOVERY_API_URL=$DISCOVERY_API_URL
ARG API_URL=https://host-01.polkascan.io/kusama/api/v1
ENV API_URL=$API_URL
ARG NETWORK_NAME=Kusama
ENV NETWORK_NAME=$NETWORK_NAME
ARG NETWORK_ID=kusama
ENV NETWORK_ID=$NETWORK_ID
ARG NETWORK_TYPE=pre
ENV NETWORK_TYPE=$NETWORK_TYPE
ARG CHAIN_TYPE=relay
ENV CHAIN_TYPE=$CHAIN_TYPE
ARG NETWORK_TOKEN_SYMBOL=KSM
ENV NETWORK_TOKEN_SYMBOL=$NETWORK_TOKEN_SYMBOL
ARG NETWORK_TOKEN_DECIMALS=12
ENV NETWORK_TOKEN_DECIMALS=$NETWORK_TOKEN_DECIMALS
ARG NETWORK_COLOR_CODE=d32e79
ENV NETWORK_COLOR_CODE=$NETWORK_COLOR_CODE
RUN npm run ng build -- --prod --output-path=dist
### STAGE 2: Setup ###
FROM nginx:1.14.1-alpine
## Remove default nginx configs
RUN rm -rf /etc/nginx/conf.d/*
## Copy our default nginx config
#COPY nginx/polkascan.conf /etc/nginx/conf.d/
COPY nginx.conf /etc/nginx/conf.d/
## Remove default nginx website
RUN rm -rf /usr/share/nginx/html/*
## From ‘builder’ stage copy over the artifacts in dist folder to default nginx public folder
COPY --from=builder /ng-app/dist /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]