XThomasBU commited on
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -5,6 +5,7 @@ WORKDIR /code
|
|
| 5 |
RUN pip install --upgrade pip
|
| 6 |
RUN pip install --no-cache-dir edubotics_core
|
| 7 |
RUN pip install chainlit==1.1.402
|
|
|
|
| 8 |
|
| 9 |
COPY . /code
|
| 10 |
|
|
@@ -36,4 +37,4 @@ RUN --mount=type=secret,id=LITERAL_API_KEY_LOGGING,mode=0444,required=true
|
|
| 36 |
RUN --mount=type=secret,id=CHAINLIT_AUTH_SECRET,mode=0444,required=true
|
| 37 |
|
| 38 |
# Default command to run the application
|
| 39 |
-
CMD vectorstore_creator --config_file config/config.yml --project_config_file config/project_config.yml && python -m uvicorn app:app --host 0.0.0.0 --port 7860
|
|
|
|
| 5 |
RUN pip install --upgrade pip
|
| 6 |
RUN pip install --no-cache-dir edubotics_core
|
| 7 |
RUN pip install chainlit==1.1.402
|
| 8 |
+
RUN pip install literalai==0.0.607
|
| 9 |
|
| 10 |
COPY . /code
|
| 11 |
|
|
|
|
| 37 |
RUN --mount=type=secret,id=CHAINLIT_AUTH_SECRET,mode=0444,required=true
|
| 38 |
|
| 39 |
# Default command to run the application
|
| 40 |
+
CMD vectorstore_creator --config_file config/config.yml --project_config_file config/project_config.yml && python -m uvicorn app:app --host 0.0.0.0 --port 7860
|