dcoer
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -32,4 +32,7 @@ RUN mkdir -p /app/.files && \
|
|
32 |
COPY --chown=user . /app
|
33 |
|
34 |
# Run the application
|
35 |
-
CMD
|
|
|
|
|
|
|
|
32 |
COPY --chown=user . /app
|
33 |
|
34 |
# Run the application
|
35 |
+
CMD /bin/bash -c "source env/bin/activate && \
|
36 |
+
python3 downloadLLM.py && \
|
37 |
+
python3 ingest.py && \
|
38 |
+
chainlit run main.py --host 0.0.0.0 --port 7680"
|