2018-09-19 07:48:41 -04:00
|
|
|
ARG PYTHON_VERSION=2
|
2018-02-03 14:18:36 -05:00
|
|
|
|
2018-10-01 07:29:17 -04:00
|
|
|
###
|
|
|
|
### Stage 0: builder
|
|
|
|
###
|
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-alpine3.8 as builder
|
2018-09-10 10:02:42 -04:00
|
|
|
|
2018-10-01 07:29:17 -04:00
|
|
|
# install the OS build deps
|
|
|
|
|
|
|
|
RUN apk add \
|
2018-07-17 03:07:03 -04:00
|
|
|
build-base \
|
|
|
|
libffi-dev \
|
|
|
|
libjpeg-turbo-dev \
|
|
|
|
libressl-dev \
|
|
|
|
libxslt-dev \
|
|
|
|
linux-headers \
|
|
|
|
postgresql-dev \
|
2018-10-01 07:29:17 -04:00
|
|
|
zlib-dev
|
|
|
|
|
|
|
|
# build things which have slow build steps, before we copy synapse, so that
|
|
|
|
# the layer can be cached.
|
|
|
|
#
|
|
|
|
# (we really just care about caching a wheel here, as the "pip install" below
|
|
|
|
# will install them again.)
|
|
|
|
|
|
|
|
RUN pip install --prefix="/install" --no-warn-script-location \
|
|
|
|
cryptography \
|
|
|
|
msgpack-python \
|
|
|
|
pillow \
|
|
|
|
pynacl
|
|
|
|
|
|
|
|
# now install synapse and all of the python deps to /install.
|
|
|
|
|
|
|
|
COPY . /synapse
|
|
|
|
RUN pip install --prefix="/install" --no-warn-script-location \
|
2018-07-17 03:07:03 -04:00
|
|
|
lxml \
|
|
|
|
psycopg2 \
|
2018-10-01 07:29:17 -04:00
|
|
|
/synapse
|
|
|
|
|
|
|
|
###
|
|
|
|
### Stage 1: runtime
|
|
|
|
###
|
|
|
|
|
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-alpine3.8
|
|
|
|
|
|
|
|
RUN apk add --no-cache --virtual .runtime_deps \
|
|
|
|
libffi \
|
|
|
|
libjpeg-turbo \
|
|
|
|
libressl \
|
|
|
|
libxslt \
|
|
|
|
libpq \
|
|
|
|
zlib \
|
|
|
|
su-exec
|
|
|
|
|
|
|
|
COPY --from=builder /install /usr/local
|
|
|
|
COPY ./docker/start.py /start.py
|
|
|
|
COPY ./docker/conf /conf
|
|
|
|
|
2018-02-03 14:18:36 -05:00
|
|
|
VOLUME ["/data"]
|
|
|
|
|
2018-02-05 17:02:33 -05:00
|
|
|
EXPOSE 8008/tcp 8448/tcp
|
2018-02-04 06:55:20 -05:00
|
|
|
|
2018-02-03 14:18:36 -05:00
|
|
|
ENTRYPOINT ["/start.py"]
|