OTF/Dockerfile
2021-02-01 13:33:42 +02:00

11 lines
88 B
Docker

FROM node
ADD ./ /data
WORKDIR /data
RUN npm i
EXPOSE 9001
CMD ['node', 'index.js']