mirror of
https://github.com/musistudio/claude-code-router.git
synced 2026-05-02 20:20:07 +00:00
12 lines
117 B
Text
12 lines
117 B
Text
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm i
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 3456
|
|
|
|
CMD ["node", "index.mjs"]
|