ci: fix pipeline, update readme and anonymize ZT references
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
FROM node:22-slim AS builder
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
||||
FROM node:22-slim
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install --production
|
||||
COPY --from=builder /app/dist ./dist
|
||||
COPY --from=builder /app/views ./views
|
||||
COPY --from=builder /app/public ./public
|
||||
|
||||
EXPOSE 3067
|
||||
CMD ["node", "--dns-result-order=ipv4first", "dist/src/index.js"]
|
||||
Reference in New Issue
Block a user