ep9io commited on
Commit
cfe9197
·
verified ·
1 Parent(s): 63c846a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]