push to v1.27.0
This commit is contained in:
parent
2ff69b5349
commit
076ffd923c
3 changed files with 7 additions and 11 deletions
16
Dockerfile
16
Dockerfile
|
@ -12,8 +12,7 @@ RUN apk add --no-cache \
|
|||
jpeg-dev \
|
||||
cargo
|
||||
|
||||
RUN pip3 install wheel
|
||||
RUN pip3 wheel matrix-synapse==$VERSION
|
||||
RUN pip3 install --target="/install" matrix-synapse==$VERSION
|
||||
|
||||
FROM thallian/confd-env:latest
|
||||
|
||||
|
@ -23,19 +22,16 @@ RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synap
|
|||
RUN apk add --no-cache \
|
||||
python3 \
|
||||
py3-pip \
|
||||
py3-psycopg2 \
|
||||
py3-jinja2 \
|
||||
py3-authlib \
|
||||
#py3-psycopg2 \
|
||||
#py3-jinja2 \
|
||||
#py3-authlib \
|
||||
libffi \
|
||||
openssl \
|
||||
zlib \
|
||||
jpeg
|
||||
|
||||
|
||||
RUN mkdir /tmp/wheels
|
||||
COPY --from=builder /*.whl /tmp/wheels/
|
||||
|
||||
RUN pip3 install /tmp/wheels/*.whl
|
||||
ENV PYTHONPATH=$PYTHONPATH:/py-pkgs
|
||||
COPY --from=builder /install /py-pkgs
|
||||
|
||||
ADD /rootfs /
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue