-
Notifications
You must be signed in to change notification settings - Fork 25
/
Dockerfile.debug
118 lines (89 loc) · 3.93 KB
/
Dockerfile.debug
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Base image
FROM node:lts-bullseye-slim AS base
## Install OS Packages
RUN apt update
RUN apt install --no-install-recommends curl jq gnupg ca-certificates -y \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
## Install Postgres
### Update postgresql APT repository [apt.postgresql.org](https://wiki.postgresql.org/wiki/Apt)
RUN ["bash", "-c", "curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null"]
RUN ["bash", "-c", "echo 'deb http://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main' > /etc/apt/sources.list.d/postgresql.list"]
RUN apt update
RUN apt upgrade -y
RUN apt install --no-install-recommends postgresql-client-14 postgresql-14 -y \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Delete unnecessary cache files
RUN apt clean
#####################################################################################################################################################
# Base build image
FROM base AS build
## Install OS and Postgres Dev Packages
RUN apt update
RUN apt install build-essential git make g++ postgresql-server-dev-14 libcurl4-openssl-dev -y
#####################################################################################################################################################
# pgsql-http and pg_cron
FROM build AS pgsql-stage
WORKDIR /
RUN git clone --branch v1.5.0 --depth 1 https://github.com/pramsey/pgsql-http
RUN cd pgsql-http && make && make install
RUN git clone --branch v1.4.2 --depth 1 https://github.com/citusdata/pg_cron
RUN cd pg_cron && make && make install
#####################################################################################################################################################
# Dashboard
FROM build AS dashboard-stage
WORKDIR /dashboard
## Install stage dependencies
COPY .yarnrc dashboard/package.json dashboard/yarn.lock ./
RUN yarn install --frozen-lockfile
## Copy files
COPY dashboard/.yarnrc dashboard/.eslintrc.json dashboard/next.config.js dashboard/postcss.config.js dashboard/tailwind.config.js dashboard/tsconfig.json dashboard/tslint.json ./
COPY dashboard/public public
COPY dashboard/src src
## Build
RUN yarn build
#####################################################################################################################################################
# Engine
FROM build AS engine-stage
WORKDIR /engine
## Install stage dependencies
COPY .yarnrc package.json yarn.lock ./
RUN yarn install --frozen-lockfile
## Copy files
COPY ormconfig.js tsconfig.json ./
COPY src src
#####################################################################################################################################################
# Main stage
FROM base AS main-stage
## Copy from pgsql-stage
WORKDIR /
COPY --from=pgsql-stage /usr/lib/postgresql /usr/lib/postgresql
COPY --from=pgsql-stage /usr/share/postgresql /usr/share/postgresql
## Copy files
COPY ./src/scripts/postgresql.conf /etc/postgresql/14/main/postgresql.conf
COPY ./src/scripts/pg_hba.conf /etc/postgresql/14/main/pg_hba.conf
COPY docker-entrypoint.debug.sh /engine/docker-entrypoint.debug.sh
COPY src/scripts /engine/src/scripts
## Copy from engine-stage
WORKDIR /engine
COPY --from=engine-stage /engine/node_modules node_modules
COPY --from=engine-stage /engine/package.json /engine/ormconfig.js /engine/tsconfig.json ./
COPY --from=engine-stage /engine/src src
## Copy from dashboard-stage
WORKDIR /dashboard
COPY --from=dashboard-stage /dashboard/public ./public
COPY --from=dashboard-stage /dashboard/.next/standalone ./
COPY --from=dashboard-stage /dashboard/.next/static ./.next/static
## Default ENVs that can be overwritten
ARG IASQL_ENV=debug
ENV IASQL_ENV=$IASQL_ENV
ARG IASQL_TELEMETRY=off
ENV IASQL_TELEMETRY=$IASQL_TELEMETRY
ARG DB_USER=postgres
ENV DB_USER=$DB_USER
ARG DB_PASSWORD=test
ENV DB_PASSWORD=$DB_PASSWORD
## Ports
EXPOSE 5432
EXPOSE 9876
EXPOSE 9229
ENTRYPOINT ["/engine/docker-entrypoint.debug.sh"]