Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
@@ -32,7 +32,12 @@ COPY --chown=user . $HOME/app
|
|
32 |
|
33 |
RUN chmod +x mxbai-embed-large-v1-f16.llamafile
|
34 |
|
35 |
-
RUN ./mxbai-embed-large-v1-f16.llamafile --server --nobrowser
|
|
|
|
|
|
|
36 |
RUN ls -la
|
37 |
|
|
|
|
|
38 |
CMD ["gunicorn", "-b", "0.0.0.0:8080", "main:app"]
|
|
|
32 |
|
33 |
RUN chmod +x mxbai-embed-large-v1-f16.llamafile
|
34 |
|
35 |
+
RUN ./mxbai-embed-large-v1-f16.llamafile --server --nobrowser &
|
36 |
+
|
37 |
+
RUN sleep 10
|
38 |
+
|
39 |
RUN ls -la
|
40 |
|
41 |
+
|
42 |
+
|
43 |
CMD ["gunicorn", "-b", "0.0.0.0:8080", "main:app"]
|