1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-14 22:39:53 +02:00
ttrss-docker-compose/db/Dockerfile
2020-10-01 11:46:04 +03:00

15 lines
400 B
Docker

FROM postgres:12
EXPOSE 5432
RUN apt-get update
RUN apt-get -y install git libpq-dev postgresql-server-dev-12
RUN apt-get -y install gcc make
COPY init-count-bits.sh /docker-entrypoint-initdb.d/
RUN git clone https://github.com/sldab/count-bits.git /opt/count-bits && \
cd /opt/count-bits && \
make && \
sed -i.bak 's/create_functions: install/create_functions:/' Makefile && \
make install