Working parametrization

This commit is contained in:
Kuba Orlik 2022-04-24 15:25:15 +02:00
parent 9dc42f6f90
commit 813f9bad03
2 changed files with 8 additions and 0 deletions

View File

@ -37,5 +37,8 @@ RUN pip install -U --no-cache-dir pytesseract
RUN apk del .dev-deps RUN apk del .dev-deps
RUN rm -f /usr/local/lib/*.a RUN rm -f /usr/local/lib/*.a
RUN rm -rf /tmp/* /var/cache/apk/* RUN rm -rf /tmp/* /var/cache/apk/*
RUN apk add jq
RUN apk add sed
RUN apk add nodejs
WORKDIR /opt WORKDIR /opt

5
array-to-lines.js Normal file
View File

@ -0,0 +1,5 @@
const input = process.argv[2];
const array = JSON.parse(input);
for (let i in array) {
console.log(array[i]);
}