Meng Zhang
commited on
Commit
·
efcf948
1
Parent(s):
447d0f8
update
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -1,3 +1,8 @@
|
|
1 |
FROM tabbyml/tabby:latest
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
CMD ["serve", "--model", "TabbyML/SantaCoder-1B"]
|
|
|
1 |
FROM tabbyml/tabby:latest
|
2 |
|
3 |
+
USER root
|
4 |
+
RUN mkdir -p /data
|
5 |
+
RUN chown 1000 /data
|
6 |
+
|
7 |
+
USER 1000
|
8 |
CMD ["serve", "--model", "TabbyML/SantaCoder-1B"]
|