1
0
mirror of https://github.com/tommytran732/Synapse-Docker synced 2024-09-19 04:44:41 -04:00

Fix path for COPY

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-05-28 01:44:39 -07:00
parent 8576b14906
commit c4d17a82d0
Signed by: Tomster
GPG Key ID: 555C902A34EC968F

View File

@ -70,8 +70,8 @@ RUN pip install --upgrade pip \
COPY --from=build-malloc /tmp/hardened_malloc/out/libhardened_malloc.so /usr/local/lib/
COPY --from=builder /install /usr/local
COPY --from=rootfs --chown=synapse:synapse /tmp/synapse/start.py /start.py
COPY --from=rootfs --chown=synapse:synapse /tmp/synapse/conf /conf
COPY --from=rootfs --chown=synapse:synapse /tmp/synapse/docker/start.py /start.py
COPY --from=rootfs --chown=synapse:synapse /tmp/synapse/docker/conf /conf
ENV LD_PRELOAD="/usr/local/lib/libhardened_malloc.so"