summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMichael Kaye <1917473+michaelkaye@users.noreply.github.com>2018-05-21 14:45:33 +0100
committerMichael Kaye <1917473+michaelkaye@users.noreply.github.com>2018-08-02 18:21:32 +0100
commit0d25724419c43313f9b8345b07aaebe3eeeeee7e (patch)
tree6aa1c51d2216d42911381e61d31fb2e322927750 /Dockerfile
parentMerge pull request #3639 from matrix-org/rav/refactor_error_handling (diff)
downloadsynapse-0d25724419c43313f9b8345b07aaebe3eeeeee7e.tar.xz
Refactor docker locations and README.
This addresses #3224
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile35
1 files changed, 0 insertions, 35 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 0242be5f68..0000000000
--- a/Dockerfile
+++ /dev/null
@@ -1,35 +0,0 @@
-FROM docker.io/python:2-alpine3.7
-
-RUN apk add --no-cache --virtual .nacl_deps \
-        build-base \
-        libffi-dev \
-        libjpeg-turbo-dev \
-        libressl-dev \
-        libxslt-dev \
-        linux-headers \
-        postgresql-dev \
-        su-exec \
-        zlib-dev
-
-COPY . /synapse
-
-# A wheel cache may be provided in ./cache for faster build
-RUN cd /synapse \
- && pip install --upgrade \
-        lxml \
-        pip \
-        psycopg2 \
-        setuptools \
- && mkdir -p /synapse/cache \
- && pip install -f /synapse/cache --upgrade --process-dependency-links . \
- && mv /synapse/contrib/docker/start.py /synapse/contrib/docker/conf / \
- && rm -rf \
-        setup.cfg \
-        setup.py \
-        synapse
-
-VOLUME ["/data"]
-
-EXPOSE 8008/tcp 8448/tcp
-
-ENTRYPOINT ["/start.py"]