mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-14 06:45:58 +08:00

### What problem does this PR solve? Add code_executor_manager. #4977. ### Type of change - [x] New Feature (non-breaking change which adds functionality)
18 lines
374 B
Docker
18 lines
374 B
Docker
FROM node:24-bookworm-slim
|
|
|
|
RUN npm config set registry https://registry.npmmirror.com
|
|
|
|
# RUN grep -rl 'deb.debian.org' /etc/apt/ | xargs sed -i 's|http[s]*://deb.debian.org|https://mirrors.ustc.edu.cn|g' && \
|
|
# apt-get update && \
|
|
# apt-get install -y curl gcc make
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json .
|
|
|
|
RUN npm install
|
|
|
|
CMD ["sleep", "infinity"]
|
|
|