7 lines
269 B
Plaintext
7 lines
269 B
Plaintext
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" ]
|