Spaces:
Running
Running
Updated README to latest local working setup [no ci]
Browse files
README.md
CHANGED
@@ -3,7 +3,7 @@ title: 'dsa4hf: Project to showcase AI solutions for medical applications in OHI
|
|
3 |
colorFrom: indigo
|
4 |
colorTo: indigo
|
5 |
sdk: docker
|
6 |
-
app_port:
|
7 |
emoji: 🔬
|
8 |
pinned: false
|
9 |
license: mit
|
@@ -25,8 +25,8 @@ When the solution is ready, the website should be accessible on [Hugging Face](h
|
|
25 |
|
26 |
```
|
27 |
git clone https://github.com/andreped/ohif4hf.git
|
28 |
-
docker build -t ohif4hf .
|
29 |
-
docker run -
|
30 |
```
|
31 |
|
32 |
To go inside docker image and debug, at the bottom of the Dockerfile, add `ENTRYPOINT [ "/bin/sh" ]` before running.
|
|
|
3 |
colorFrom: indigo
|
4 |
colorTo: indigo
|
5 |
sdk: docker
|
6 |
+
app_port: 3000
|
7 |
emoji: 🔬
|
8 |
pinned: false
|
9 |
license: mit
|
|
|
25 |
|
26 |
```
|
27 |
git clone https://github.com/andreped/ohif4hf.git
|
28 |
+
docker build --no-cache -t ohif4hf .
|
29 |
+
docker run -p 3000:80 --name ohif4hf-container ohif4hf
|
30 |
```
|
31 |
|
32 |
To go inside docker image and debug, at the bottom of the Dockerfile, add `ENTRYPOINT [ "/bin/sh" ]` before running.
|