Working parametrization
This commit is contained in:
parent
9dc42f6f90
commit
813f9bad03
|
@ -37,5 +37,8 @@ RUN pip install -U --no-cache-dir pytesseract
|
|||
RUN apk del .dev-deps
|
||||
RUN rm -f /usr/local/lib/*.a
|
||||
RUN rm -rf /tmp/* /var/cache/apk/*
|
||||
RUN apk add jq
|
||||
RUN apk add sed
|
||||
RUN apk add nodejs
|
||||
|
||||
WORKDIR /opt
|
||||
|
|
5
array-to-lines.js
Normal file
5
array-to-lines.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
const input = process.argv[2];
|
||||
const array = JSON.parse(input);
|
||||
for (let i in array) {
|
||||
console.log(array[i]);
|
||||
}
|
Loading…
Reference in New Issue
Block a user