Claude commited on
Commit
726152d
·
unverified ·
1 Parent(s): 28bcb40

Add supabase to Dockerfile pip install

Browse files

Ensures supabase is available in fresh container builds without
needing a separate pip install step.

https://claude.ai/code/session_01DPirJ78YYN4fJUvUFJ5D6V

Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -4,7 +4,7 @@ WORKDIR /app
4
 
5
  COPY . .
6
 
7
- RUN pip install --no-cache-dir gradio huggingface-hub requests pydantic matplotlib python-dotenv pyyaml
8
 
9
  EXPOSE 7860
10
 
 
4
 
5
  COPY . .
6
 
7
+ RUN pip install --no-cache-dir gradio huggingface-hub requests pydantic matplotlib python-dotenv pyyaml supabase
8
 
9
  EXPOSE 7860
10