11 lines
195 B
Plaintext
11 lines
195 B
Plaintext
|
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
|