Files
dvcp-node-service/Dockerfile

15 lines
243 B
Docker
Raw Normal View History

FROM node:16-slim
2023-12-12 09:23:23 +08:00
LABEL authors="kubbo"
2024-10-21 14:24:20 +08:00
RUN yum update -y && yum install -y bash
RUN yum clean all && rm -rf /var/cache/yum
2024-10-16 16:36:50 +08:00
COPY . /app
WORKDIR /app
2023-12-12 11:18:21 +08:00
RUN npm i --registry=http://registry.npmmirror.com
2024-10-16 16:36:50 +08:00
EXPOSE 12525
2023-12-12 09:23:23 +08:00
CMD ["node", "index.js"]