-m scripts.convert
Some checks reported errors
continuous-integration/drone/push Build was killed

Signed-off-by: ale <ale@manalejandro.com>
This commit is contained in:
ale 2024-11-23 11:32:46 +01:00
parent a76d448897
commit a3921a7a75
Signed by: ale
GPG Key ID: 244A9C4DAB1C0C81

View File

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