init dialectic

This commit is contained in:
h z
2026-02-13 15:44:25 +00:00
parent 29ae2ba1f4
commit 16630b6999
3 changed files with 2 additions and 4 deletions

View File

@@ -1,9 +1,9 @@
FROM node:21-alpine
FROM docker.m.daocloud.io/library/node:21-alpine
RUN apk add --no-cache bash
WORKDIR /app
COPY package*.json ./
RUN npm config set registry https://registry.npmmirror.com/
RUN npm install
COPY . .
EXPOSE 3001
EXPOSE 3000
CMD ["npm", "start"]