-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0ee370
commit 9009396
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,7 @@ USER root | |
# Instala as dependências necessárias para a construção | ||
RUN apk add --no-cache make gcc g++ python3 | ||
|
||
# Instala as dependências do Gradio e Langfuse globalmente | ||
RUN npm install -g @gradio/client [email protected] [email protected] | ||
|
||
|
||
# Imagem final | ||
FROM n8nio/n8n:latest | ||
|
@@ -16,6 +15,7 @@ USER root | |
|
||
# Copia as dependências globais instaladas da etapa de construção | ||
COPY --from=builder /usr/local/lib/node_modules /usr/local/lib/node_modules | ||
COPY --from=builder /usr/local/bin /usr/local/bin | ||
# Instala as dependências do Gradio e Langfuse globalmente | ||
RUN npm install -g @gradio/client [email protected] [email protected] | ||
|
||
USER node |