- Changed from build context to using node:24-alpine image directly - Updated discourse-mcp Dockerfile to node:24-alpine - Changed npm ci to npm install in Dockerfile - Added note about npx usage due to TypeScript compilation errors in 0.2.4
14 lines
133 B
Docker
14 lines
133 B
Docker
FROM node:24-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
CMD ["node", "dist/index.js"]
|