This commit is contained in:
Fred Boniface
2024-04-26 18:37:00 +01:00
commit 12b22bd1b2
202 changed files with 63202 additions and 0 deletions

10
test.dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM ubuntu:22.04
RUN apt update \
&& apt install -y nodejs npm \
&& apt clean
WORKDIR /app
COPY package* ./
RUN npm i
COPY process.js ./
COPY test_input/ /deploy/in/
RUN node process.js