Files
dvcp-node-service/Dockerfile
2024-10-18 12:08:09 +08:00

13 lines
196 B
Docker

FROM node:16
LABEL authors="kubbo"
RUN yum update -y && yum install -y expect
COPY . /app
WORKDIR /app
RUN npm i --registry=http://registry.npmmirror.com
EXPOSE 12525
CMD ["node", "index.js"]