timescaledb/Dockerfile
Olof Rensfelt 0f3aa8d557 * Add _meta schema to allow all code to be loaded on both meta and nodes.
* Split SQL into functions and setup.
* Remove hash-lib dependency.
* Makes code into Postgresql extension.
2016-12-20 16:10:59 +01:00

14 lines
303 B
Docker

FROM postgres:9.6.1
MAINTAINER Matvey Arye
ENV PG_MAJOR 9.6
RUN apt-get update && apt-get install -y \
build-essential \
daemontools \
postgresql-server-dev-$PG_MAJOR \
&& rm -rf /var/lib/apt/lists/*
COPY extension /extension
RUN cd /extension && make install && rm -rf /extension