Select Git revision
Dockerfile.temporal_tables

Martin Weise authored
Merge remote-tracking branch 'origin/17-database-create-temporal-tables' into 74-error-on-create-database-after-merge-at-dev
Dockerfile.temporal_tables 396 B
FROM postgres:12.4-alpine
RUN apk add --no-cache libpq make gcc clang llvm musl-dev python3-dev git
ENV PG_CONFIG=/usr/local/bin/pg_config
RUN git clone https://github.com/arkhipov/temporal_tables.git && cd temporal_tables && \
make && make install
WORKDIR ./temporal_tables
RUN echo "make installcheck PGUSER=postgres" > ./check.sh
RUN chmod +x ./check.sh
EXPOSE 5432
CMD ["postgres"]