Install the postgres dependencies

This commit is contained in:
kaiyou 2018-02-04 12:28:42 +01:00
parent 886c2d5019
commit 042757feb2
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
FROM python:2-alpine FROM python:2-alpine
RUN apk add --no-cache --virtual .nacl_deps build-base libffi-dev zlib-dev openssl-dev libjpeg-turbo-dev linux-headers RUN apk add --no-cache --virtual .nacl_deps build-base libffi-dev zlib-dev openssl-dev libjpeg-turbo-dev linux-headers postgresql-dev
COPY . /synapse COPY . /synapse
# A wheel cache may be provided in ./cache for faster build # A wheel cache may be provided in ./cache for faster build
RUN cd /synapse \ RUN cd /synapse \
&& pip install --upgrade pip setuptools \ && pip install --upgrade pip setuptools psycopg2 \
&& mkdir -p /synapse/cache \ && mkdir -p /synapse/cache \
&& pip install -f /synapse/cache --upgrade --process-dependency-links . \ && pip install -f /synapse/cache --upgrade --process-dependency-links . \
&& mv /synapse/contrib/docker/* / \ && mv /synapse/contrib/docker/* / \