14 lines
251 B
Docker
14 lines
251 B
Docker
FROM localai/localai:latest-cpu
|
|
|
|
|
|
|
|
ENV LOCALAI_P2P="true"
|
|
ENV LOCALAI_FEDERATED="true"
|
|
|
|
|
|
COPY run.sh /build/custom-entrypoint.sh
|
|
RUN chmod +x /build/custom-entrypoint.sh
|
|
|
|
# Remplacer l'entrypoint par défaut
|
|
ENTRYPOINT ["/build/custom-entrypoint.sh"]
|