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

6
dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:latest
WORKDIR /app
COPY package* ./
RUN npm i
COPY process.js ./process.js
CMD [ "echo", "This container is meant to be run as part of a build pipeline. Copy input files to /deploy/in, run 'node process.js', output files will be available in /deploy/out" ]