web-deploy/test.dockerfile

11 lines
195 B
Plaintext
Raw Normal View History

2024-04-26 18:37:00 +01:00
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