Move COPY before RUN and merge RUNs

This commit is contained in:
Mathijs van Gorcum 2018-09-10 14:02:42 +00:00 committed by GitHub
parent b7e7712f07
commit e586916cda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,7 @@
FROM docker.io/python:2-alpine3.8
COPY . /synapse
RUN apk add --no-cache --virtual .nacl_deps \
build-base \
libffi-dev \
@ -9,12 +11,10 @@ RUN apk add --no-cache --virtual .nacl_deps \
linux-headers \
postgresql-dev \
su-exec \
zlib-dev
COPY . /synapse
zlib-dev \
# A wheel cache may be provided in ./cache for faster build
RUN cd /synapse \
&& cd /synapse \
&& pip install --upgrade \
lxml \
pip \