mirror of
https://github.com/tecno-consultores/llm-lab
synced 2026-04-21 17:17:17 +00:00
commit
56f56cee0b
1 changed files with 11 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM n8nio/n8n:latest
|
||||
ENV PATH="/bin:/usr/local/bin:/root/.local/bin:${PATH}"
|
||||
USER root
|
||||
|
||||
RUN apk add --no-cache curl git build-base chromium bash tar xz util-linux coreutils
|
||||
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
||||
RUN chmod a+rx /bin/uv /bin/uvx && mkdir -p /data/mcp && chown -R node:node /data/mcp
|
||||
|
||||
USER node
|
||||
ENTRYPOINT ["tini", "--", "node", "/usr/local/bin/n8n"]
|
||||
|
||||
Loading…
Reference in a new issue