Created via MCP

This commit is contained in:
2026-03-01 17:10:34 +00:00
parent ff12ba6bfd
commit c71e537052

View File

@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY index.js .
EXPOSE 3000
CMD ["node", "index.js"]