Files changed (2) hide show
  1. Dockerfile +6 -3
  2. README.md +1 -1
Dockerfile CHANGED
@@ -1,5 +1,8 @@
1
- FROM tabbyml/tabby:0.17.0
2
 
3
- ENV TABBY_ROOT=/data/.tabby
 
 
4
 
5
- CMD ["serve", "--device", "cuda", "--model", "TabbyML/StarCoder-1B"]
 
 
1
+ FROM tabbyml/tabby:0.1.2
2
 
3
+ USER root
4
+ RUN mkdir -p /data
5
+ RUN chown 1000 /data
6
 
7
+ USER 1000
8
+ CMD ["serve", "--device", "cuda", "--model", "TabbyML/SantaCoder-1B"]
README.md CHANGED
@@ -7,7 +7,7 @@ sdk: docker
7
  app_port: 8080
8
  fullWidth: true
9
  suggested_storage: small
10
- suggested_hardware: t4-medium
11
  tags:
12
  - tabby
13
  ---
 
7
  app_port: 8080
8
  fullWidth: true
9
  suggested_storage: small
10
+ suggested_hardware: t4-small
11
  tags:
12
  - tabby
13
  ---