Files
dvcp-node-service/Dockerfile
2024-10-21 14:24:20 +08:00

15 lines
243 B
Docker

FROM node:16-slim
LABEL authors="kubbo"
RUN yum update -y && yum install -y bash
RUN yum clean all && rm -rf /var/cache/yum
COPY . /app
WORKDIR /app
RUN npm i --registry=http://registry.npmmirror.com
EXPOSE 12525
CMD ["node", "index.js"]