push to v1.72.0
This commit is contained in:
parent
f8d3f8b73b
commit
dd2f5eebed
36
Dockerfile
36
Dockerfile
@ -1,33 +1,33 @@
|
|||||||
FROM docker.io/alpine:3.16 AS builder
|
FROM docker.io/alpine:3.17 AS builder
|
||||||
|
|
||||||
ENV VERSION=v1.71.0
|
ENV VERSION=v1.72.0
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
alpine-sdk \
|
alpine-sdk \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
py3-pip \
|
py3-pip \
|
||||||
py3-wheel \
|
py3-wheel \
|
||||||
libffi-dev \
|
libffi-dev \
|
||||||
openssl-dev \
|
openssl-dev \
|
||||||
zlib-dev \
|
zlib-dev \
|
||||||
jpeg-dev \
|
jpeg-dev \
|
||||||
rust
|
rust
|
||||||
|
|
||||||
RUN pip3 install --target="/install" matrix-synapse==$VERSION
|
RUN pip3 install --target="/install" matrix-synapse==$VERSION
|
||||||
|
|
||||||
FROM docker.io/thallian/confd-env:3.16
|
FROM docker.io/thallian/confd-env:3.17
|
||||||
|
|
||||||
RUN addgroup -g 2222 matrix-synapse
|
RUN addgroup -g 2222 matrix-synapse
|
||||||
RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse
|
RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
python3 \
|
python3 \
|
||||||
py3-psycopg2 \
|
py3-psycopg2 \
|
||||||
py3-authlib \
|
py3-authlib \
|
||||||
libffi \
|
libffi \
|
||||||
openssl \
|
openssl \
|
||||||
zlib \
|
zlib \
|
||||||
jpeg
|
jpeg
|
||||||
|
|
||||||
ENV PYTHONPATH=$PYTHONPATH:/py-pkgs
|
ENV PYTHONPATH=$PYTHONPATH:/py-pkgs
|
||||||
COPY --from=builder /install /py-pkgs
|
COPY --from=builder /install /py-pkgs
|
||||||
|
Loading…
Reference in New Issue
Block a user