Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add curl in backend docker image #18

Merged
merged 1 commit into from
May 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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