initial commit

Este commit está contenido en:
ale
2024-03-29 18:32:27 +01:00
commit 09212bd8b0
Se han modificado 3 ficheros con 25 adiciones y 0 borrados

7
Dockerfile Archivo normal
Ver fichero

@@ -0,0 +1,7 @@
FROM debian:sid
RUN apt update && apt install -y git python3-pip && apt clean
RUN git clone --depth 1 https://github.com/xenova/transformers.js /transformers.js
WORKDIR /transformers.js/scripts
RUN pip3 install --break-system-packages -r requirements.txt
CMD "--help"
ENTRYPOINT ["python3", "convert.py"]