fix: added build stage to reduce the image size
This commit is contained in:
parent
36ef1e478b
commit
620bd517cc
@ -3,7 +3,7 @@
|
|||||||
# Copyright (c) 2021-2022 Cisco Systems, Inc. and others. All rights reserved.
|
# Copyright (c) 2021-2022 Cisco Systems, Inc. and others. All rights reserved.
|
||||||
#
|
#
|
||||||
# Build:
|
# Build:
|
||||||
# docker build --platform linux/amd64 -t openbmp/postgres:2.1.0 .
|
# DOCKER_BUILDKIT=1 docker build --platform linux/amd64 -t openbmp/postgres:2.1.0 .
|
||||||
#
|
#
|
||||||
# Run:
|
# Run:
|
||||||
# docker run --rm -it -p 5432:5432 \
|
# docker run --rm -it -p 5432:5432 \
|
||||||
@ -12,6 +12,29 @@
|
|||||||
# -e POSTGRES_DB=openbmp \
|
# -e POSTGRES_DB=openbmp \
|
||||||
# openbmp/postgres:2.1.0
|
# openbmp/postgres:2.1.0
|
||||||
|
|
||||||
|
# -----------------------------------------------
|
||||||
|
# stage: Build
|
||||||
|
# -----------------------------------------------
|
||||||
|
FROM timescale/timescaledb:2.5.1-pg14 AS build
|
||||||
|
|
||||||
|
ENV PG_CRON_VERSION 1.3.0
|
||||||
|
|
||||||
|
WORKDIR /ws
|
||||||
|
|
||||||
|
RUN apk update \
|
||||||
|
&& apk add --no-cache --virtual .build-deps build-base ca-certificates clang-dev llvm12 openssl
|
||||||
|
|
||||||
|
## Install pg_cron
|
||||||
|
RUN wget -O pg_cron.tgz https://github.com/citusdata/pg_cron/archive/v$PG_CRON_VERSION.tar.gz \
|
||||||
|
&& tar xvzf pg_cron.tgz && cd pg_cron-$PG_CRON_VERSION/ \
|
||||||
|
&& sed -i.bak -e 's/-Werror//g' Makefile \
|
||||||
|
&& sed -i.bak -e 's/-Wno-implicit-fallthrough//g' Makefile \
|
||||||
|
&& make
|
||||||
|
|
||||||
|
# -----------------------------------------------
|
||||||
|
# stage: Final container
|
||||||
|
# -----------------------------------------------
|
||||||
|
|
||||||
FROM timescale/timescaledb:2.5.1-pg14
|
FROM timescale/timescaledb:2.5.1-pg14
|
||||||
|
|
||||||
ENV PG_CRON_VERSION 1.3.0
|
ENV PG_CRON_VERSION 1.3.0
|
||||||
@ -27,7 +50,7 @@ VOLUME ["/var/lib/postgresql/ts"]
|
|||||||
|
|
||||||
|
|
||||||
RUN apk update \
|
RUN apk update \
|
||||||
&& apk add --no-cache --virtual .build-deps build-base ca-certificates clang-dev llvm12 openssl\
|
&& apk add openssl\
|
||||||
&& openssl req -x509 -newkey rsa:4096 -nodes -subj "/C=US/ST=CA/L=Seattle/O=OpenBMP/CN=localhost" \
|
&& openssl req -x509 -newkey rsa:4096 -nodes -subj "/C=US/ST=CA/L=Seattle/O=OpenBMP/CN=localhost" \
|
||||||
-keyout /psql_server.key -out /psql_server.crt -days 2048 \
|
-keyout /psql_server.key -out /psql_server.crt -days 2048 \
|
||||||
&& chown postgres /psql_server.* \
|
&& chown postgres /psql_server.* \
|
||||||
@ -42,14 +65,12 @@ RUN apk update \
|
|||||||
&& sed -i -e "s/^\#*ssl_key_file.*=.*/ssl_key_file = \'\/psql_server.key\'/" /usr/local/share/postgresql/postgresql.conf.sample \
|
&& sed -i -e "s/^\#*ssl_key_file.*=.*/ssl_key_file = \'\/psql_server.key\'/" /usr/local/share/postgresql/postgresql.conf.sample \
|
||||||
&& sed -i -e "s/^shared_preload_libraries.*/shared_preload_libraries = 'timescaledb,pg_cron'/g" /usr/local/share/postgresql/postgresql.conf.sample
|
&& sed -i -e "s/^shared_preload_libraries.*/shared_preload_libraries = 'timescaledb,pg_cron'/g" /usr/local/share/postgresql/postgresql.conf.sample
|
||||||
|
|
||||||
## Install pg_cron
|
COPY --chmod=755 --from=build /ws/pg_cron-$PG_CRON_VERSION/pg_cron.so /usr/local/lib/postgresql/pg_cron.so
|
||||||
RUN wget -O /ws/pg_cron.tgz https://github.com/citusdata/pg_cron/archive/v$PG_CRON_VERSION.tar.gz \
|
COPY --chmod=644 --from=build /ws/pg_cron-$PG_CRON_VERSION/pg_cron.control /usr/local/share/postgresql/extension/pg_cron.control
|
||||||
&& tar xvzf /ws/pg_cron.tgz && cd /ws/pg_cron-1.3.0/ \
|
COPY --chmod=644 --from=build /ws/pg_cron-$PG_CRON_VERSION/pg_cron--1.0--1.1.sql /usr/local/share/postgresql/extension/pg_cron--1.0--1.1.sql
|
||||||
&& sed -i.bak -e 's/-Werror//g' Makefile \
|
COPY --chmod=644 --from=build /ws/pg_cron-$PG_CRON_VERSION/pg_cron--1.1--1.2.sql /usr/local/share/postgresql/extension/pg_cron--1.1--1.2.sql
|
||||||
&& sed -i.bak -e 's/-Wno-implicit-fallthrough//g' Makefile \
|
COPY --chmod=644 --from=build /ws/pg_cron-$PG_CRON_VERSION/pg_cron--1.2--1.3.sql /usr/local/share/postgresql/extension/pg_cron--1.2--1.3.sql
|
||||||
&& make && make install \
|
COPY --chmod=644 --from=build /ws/pg_cron-$PG_CRON_VERSION/pg_cron--1.0.sql /usr/local/share/postgresql/extension/pg_cron--1.0.sql
|
||||||
&& cd .. && rm -rf pg_cron.tgz && rm -rf pg_cron-* \
|
|
||||||
&& apk del .build-deps
|
|
||||||
|
|
||||||
ADD --chmod=755 scripts/0_obmp_init.sh /docker-entrypoint-initdb.d/0_obmp_init.sh
|
ADD --chmod=755 scripts/0_obmp_init.sh /docker-entrypoint-initdb.d/0_obmp_init.sh
|
||||||
## providing db name for cron metadata tables
|
## providing db name for cron metadata tables
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user