Create Dockerfile
Browse files- Dockerfile +9 -0
Dockerfile
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM localai/localai:latest-aio-cpu
|
2 |
+
|
3 |
+
# Copy the auth config section
|
4 |
+
COPY .entrypoint.sh entrypoint.sh
|
5 |
+
|
6 |
+
# Define datasets to preload: full=all datasets, single=one dataset, and none=no datasets.
|
7 |
+
ENV REBUILD="false"
|
8 |
+
|
9 |
+
CMD ["/bin/bash", ".entrypoint.sh"]
|