mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-07 03:19:30 +00:00
7 lines
206 B
Text
7 lines
206 B
Text
|
FROM debian:bookworm-slim as image
|
||
|
|
||
|
COPY --from=mimalloc libmimalloc.so /usr/lib
|
||
|
RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
|
||
|
|
||
|
RUN apt update && apt upgrade -y && apt autoremove -y && apt clean
|