test-deploy-restart / Dockerfile
ZeroClawAgent's picture
Deploy Space with 1 file(s)
27412c7 verified
Raw
History Blame Contribute Delete
144 Bytes
FROM node:22-slim
WORKDIR /app
RUN npm init -y && npm install @mcpcentral/mcp-time
ENV PORT=7860
EXPOSE 7860
CMD ["npx", "@mcpcentral/mcp-time"]