8 lines
213 B
Docker
8 lines
213 B
Docker
FROM node:20-slim
|
|
RUN npm install -g @anthropic-ai/claude-code
|
|
RUN apt-get update && apt-get install -y sqlite3 && rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /app
|
|
COPY run.sh .
|
|
RUN chmod +x run.sh
|
|
CMD ["bash", "run.sh"]
|