8 lines
193 B
Docker
8 lines
193 B
Docker
FROM ghcr.io/element-hq/synapse:v1.152.1
|
|
|
|
# Install pip dependency
|
|
RUN pip install "synapse-s3-storage-provider==1.6.*"
|
|
|
|
# Start Synapse with original entrypoint
|
|
ENTRYPOINT ["/start.py"]
|
|
CMD [] |