- Dockerfile +8 -0
- README.md +17 -10
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the pre-built image from Docker Hub
|
| 2 |
+
FROM haroldli/alist-tvbox:latest
|
| 3 |
+
|
| 4 |
+
# Expose the application port for Hugging Face Spaces
|
| 5 |
+
EXPOSE 4567
|
| 6 |
+
|
| 7 |
+
# Start the application
|
| 8 |
+
CMD ["java", "-jar", "/app/app.jar"]
|
README.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
| 1 |
-
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo: green
|
| 6 |
-
sdk: docker
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: AList TVBox
|
| 3 |
+
emoji: 📺
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 4567
|
| 8 |
+
pinned: false
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# AList TVBox on Hugging Face
|
| 12 |
+
|
| 13 |
+
This Space runs the [alist-tvbox](https://github.com/power721/alist-tvbox) application.
|
| 14 |
+
|
| 15 |
+
It is deployed using a custom Dockerfile that builds the entire application from source.
|
| 16 |
+
|
| 17 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|