forked from bitfinexcom/bfx-reports-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.worker
69 lines (58 loc) · 1.51 KB
/
Dockerfile.worker
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
65
66
67
68
69
FROM node:20.18.1-alpine3.20
ARG GRC_VER="0.7.1"
WORKDIR /home/node/grenache-cli
RUN apk update && apk add --no-cache --virtual \
.gyp \
python3 \
make \
jq \
help2man \
gcc \
musl-dev \
autoconf \
automake \
libtool \
pkgconfig \
file \
patch \
bison \
clang \
flex \
curl \
perl \
perl-dev \
wget \
g++ \
git \
openssh \
bash \
chromium \
nss \
freetype \
harfbuzz \
ca-certificates \
ttf-freefont
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
RUN wget -c https://github.com/bitfinexcom/grenache-cli/releases/download/${GRC_VER}/grenache-cli-${GRC_VER}.tar.xz \
&& tar -xf grenache-cli-${GRC_VER}.tar.xz \
&& cd grenache-cli-${GRC_VER} \
&& ./configure \
&& make \
&& make install \
&& grenache-keygen
WORKDIR /home/node/bfx-reports-framework
COPY package*.json .npmrc ./
RUN npm i --production --no-audit
COPY ./config ./config
RUN cp config/schedule.json.example config/schedule.json \
&& cp config/common.json.example config/common.json \
&& cp config/service.report.json.example config/service.report.json \
&& cp config/facs/grc.config.json.example config/facs/grc.config.json \
&& cp config/facs/grc-slack.config.json.example config/facs/grc-slack.config.json
COPY . .
COPY ./scripts/worker-entrypoint.sh /usr/local/bin/
HEALTHCHECK --interval=10s --timeout=3s --start-period=10s --retries=3 \
CMD grenache-lookup -g ${GRAPE_HOST} -p ${GRAPE_APH} "rest:report:api" \
|| kill 1
ENTRYPOINT ["worker-entrypoint.sh"]
CMD ["worker.js"]