-
Notifications
You must be signed in to change notification settings - Fork 14
/
Dockerfile
57 lines (35 loc) · 2.49 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
FROM node:16
WORKDIR /var/www/goplan-finance/app
ADD . /var/www/goplan-finance/app
########################################################################################################################
### Config & Params ###
########################################################################################################################
# Add chromium if PDF generation is needed
RUN apt-get update && apt-get -y install vim \
&& rm -rf /var/lib/apt/lists/*
# @todo this might conflict with an existing bashrc
ADD k8s/scripts/bashrc.sh /root/.login_banner.sh
RUN echo "sh /root/.login_banner.sh" >> /root/.bashrc
########################################################################################################################
### Common Stuff ###
########################################################################################################################
RUN yarn install --frozen-lockfile --cache-folder .yarncache \
&& rm -rf .yarncache
########################################################################################################################
### FRONTEND ###
########################################################################################################################
RUN echo "prod" > ./frontend/.env
RUN yarn --cwd frontend run frontend-build \
&& rm -rf frontend/node_modules
########################################################################################################################
### BACKEND ###
########################################################################################################################
########################################################################################################################
### HTTPS & LetsEncrypt ###
########################################################################################################################
ENV APP_ID=
ENV MASTER_KEY=
ENV DATABASE_URI=
EXPOSE 80 1337
ENV PARSE_PORT=80
CMD [ "yarn", "--cwd" , "backend" , "run", "backend-serve" ]