Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Jul 16, 2019
1 parent c43c1ad commit 7fcd6c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile-optimised
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FROM matrixdotorg/optimised-python:${PYTHON_VERSION}-optimized-lto-${MARCH} as b

# install the OS build deps

RUN apt-get install -y build-essential libpq5-dev libffi-dev libexpat1-dev libxml2-dev libxslt-dev
RUN apt-get update && apt-get install -y build-essential libpq5-dev libffi-dev libexpat1-dev libxml2-dev libxslt-dev

# build things which have slow build steps, before we copy synapse, so that
# the layer can be cached.
Expand Down Expand Up @@ -53,7 +53,7 @@ RUN chown -R root:root /usr/local /install
FROM matrixdotorg/optimised-python:${PYTHON_VERSION}-optimized-lto-${MARCH}

# xmlsec is required for saml support
RUN apt install libpq5 xmlsec libxslt1
RUN apt-get update && apt-get install -y libpq5 xmlsec libxslt1

COPY --from=builder /install /usr/local
COPY ./docker/start.py /start.py
Expand Down

0 comments on commit 7fcd6c1

Please sign in to comment.