forked from growthbook/growthbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
59 lines (55 loc) · 2.03 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
# Build the python gbstats package
FROM python:3.9-slim AS pybuild
WORKDIR /usr/local/src/app
COPY ./packages/stats .
RUN \
pip3 install poetry \
&& poetry install --no-root --no-dev --no-interaction --no-ansi \
&& poetry build
# Build the nodejs app
FROM node:14-slim AS nodebuild
WORKDIR /usr/local/src/app
COPY packages ./packages
COPY package.json ./package.json
COPY yarn.lock ./yarn.lock
RUN \
# Install app with dev dependencies
yarn install --frozen-lockfile --ignore-optional \
# Build the app
&& yarn build \
# Then do a clean install with only production dependencies
&& rm -rf node_modules \
&& rm -rf packages/back-end/node_modules \
&& rm -rf packages/front-end/node_modules \
&& rm -rf packages/front-end/.next/cache \
&& yarn install --frozen-lockfile --production=true --ignore-optional
# Package the full app together
FROM python:3.9-slim
WORKDIR /usr/local/src/app
RUN apt-get update && \
apt-get install -y wget gnupg2 && \
echo "deb https://deb.nodesource.com/node_14.x buster main" > /etc/apt/sources.list.d/nodesource.list && \
wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
wget -qO- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
apt-get update && \
apt-get install -yqq nodejs=$(apt-cache show nodejs|grep Version|grep nodesource|cut -c 10-) yarn && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN pip3 install \
nbformat \
numpy \
pandas \
scipy \
&& rm -rf /root/.cache/pip
COPY --from=nodebuild /usr/local/src/app/packages ./packages
COPY --from=nodebuild /usr/local/src/app/node_modules ./node_modules
COPY --from=nodebuild /usr/local/src/app/package.json ./package.json
COPY --from=pybuild /usr/local/src/app/dist /usr/local/src/gbstats
RUN pip3 install /usr/local/src/gbstats/*.whl
# The front-end app (NextJS)
EXPOSE 3000
# The back-end api (Express)
EXPOSE 3100
# Start both front-end and back-end at once
CMD ["yarn","start"]