Skip to content

Commit

Permalink
add curl in backend docker image (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzming authored May 30, 2024
1 parent 024fe21 commit a3bc916
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ragstack/docker/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ LABEL org.opencontainers.image.licenses=BUSL-1.1
LABEL org.opencontainers.image.url=https://github.com/datastax/ragstack-ai-langflow
LABEL org.opencontainers.image.source=https://github.com/datastax/ragstack-ai-langflow

# Update package list and install curl
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*

ENV PATH="/app/.venv/bin:$PATH"
ENV PYTHONUNBUFFERED=1

Expand All @@ -33,4 +36,4 @@ USER 10000
WORKDIR /app
COPY --from=builder --chown=10000 /app/ /app/

ENV LANGFLOW_DATABASE_URL=sqlite:///$HOME/app/langflow.db
ENV LANGFLOW_DATABASE_URL=sqlite:///$HOME/app/langflow.db

0 comments on commit a3bc916

Please sign in to comment.