Add Dockerfile

This commit is contained in:
smithery-ai[bot]
2025-04-10 13:12:28 +00:00
committed by GitHub
parent 16f7040bc6
commit b33a847ba8

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM node:lts-alpine
# Create app directory
WORKDIR /app
# Install app dependencies
COPY package*.json ./
RUN npm install --production --ignore-scripts
# Bundle app source
COPY . .
# Build the project
RUN npm run build
# Expose any ports if needed, else CMD
CMD ["node", "build/index.js"]