redscope-mcp-time / Dockerfile
ZeroClawAgent's picture
Update Dockerfile
2b22146 verified
Raw
History Blame Contribute Delete
144 Bytes
FROM node:22-slim
WORKDIR /app
RUN npm init -y && npm install @cbuk100011/mcp-time
ENV PORT=7860
EXPOSE 7860
CMD ["npx", "@cbuk100011/mcp-time"]