Spaces:
Paused
Paused
Create Dockerfile
Browse files- Dockerfile +10 -0
Dockerfile
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
| 2 |
+
# you will also find guides on how best to write your Dockerfile
|
| 3 |
+
|
| 4 |
+
FROM ghcr.io/ep9io/rustpipe:main
|
| 5 |
+
|
| 6 |
+
ENV RUST_LOG=info
|
| 7 |
+
|
| 8 |
+
WORKDIR /workspace
|
| 9 |
+
|
| 10 |
+
CMD ["server", "--bind", "0.0.0.0", "--port", "3001"]
|