Files
dvcp-node-service/Dockerfile
2024-10-21 14:41:15 +08:00

11 lines
157 B
Docker

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