Spaces:
Build error
Build error
XThomasBU
commited on
Commit
•
3697668
1
Parent(s):
02c7dd2
docker changes
Browse files- Dockerfile +8 -1
Dockerfile
CHANGED
@@ -26,6 +26,13 @@ WORKDIR /code/code
|
|
26 |
|
27 |
RUN --mount=type=secret,id=HUGGINGFACEHUB_API_TOKEN,mode=0444,required=true
|
28 |
RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
# Default command to run the application
|
31 |
-
CMD ["sh", "-c", "python -m modules.vectorstore.store_manager &&
|
|
|
26 |
|
27 |
RUN --mount=type=secret,id=HUGGINGFACEHUB_API_TOKEN,mode=0444,required=true
|
28 |
RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true
|
29 |
+
RUN --mount=type=secret,id=CHAINLIT_URL,mode=0444,required=true
|
30 |
+
RUN --mount=type=secret,id=LITERAL_API_URL,mode=0444,required=true
|
31 |
+
RUN --mount=type=secret,id=LLAMA_CLOUD_API_KEY,mode=0444,required=true
|
32 |
+
RUN --mount=type=secret,id=OAUTH_GOOGLE_CLIENT_ID,mode=0444,required=true
|
33 |
+
RUN --mount=type=secret,id=OAUTH_GOOGLE_CLIENT_SECRET,mode=0444,required=true
|
34 |
+
RUN --mount=type=secret,id=LITERAL_API_KEY_LOGGING,mode=0444,required=true
|
35 |
+
RUN --mount=type=secret,id=CHAINLIT_AUTH_SECRET,mode=0444,required=true
|
36 |
|
37 |
# Default command to run the application
|
38 |
+
CMD ["sh", "-c", "python -m modules.vectorstore.store_manager && uvicorn app:app --host 0.0.0.0 --port 7860"]
|