Remove mcp-gateway/erpnext-mcp/Dockerfile
This commit is contained in:
parent
33539a26d8
commit
6338609df4
1 changed files with 0 additions and 25 deletions
|
|
@ -1,25 +0,0 @@
|
||||||
FROM node:22-alpine AS builder
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
COPY package.json package-lock.json ./
|
|
||||||
RUN npm ci
|
|
||||||
COPY tsconfig.json ./
|
|
||||||
COPY src/ ./src/
|
|
||||||
RUN npm run build
|
|
||||||
|
|
||||||
FROM node:22-alpine
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
COPY package.json package-lock.json ./
|
|
||||||
RUN npm ci --omit=dev
|
|
||||||
COPY --from=builder /app/dist ./dist
|
|
||||||
|
|
||||||
ENV TRANSPORT=http
|
|
||||||
ENV PORT=32802
|
|
||||||
|
|
||||||
EXPOSE 32802
|
|
||||||
|
|
||||||
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s \
|
|
||||||
CMD wget -qO- http://localhost:32802/health || exit 1
|
|
||||||
|
|
||||||
CMD ["node", "dist/index.js"]
|
|
||||||
Loading…
Reference in a new issue