andreped commited on
Commit
d3d9446
1 Parent(s): 62109e8

Updated README to latest local working setup [no ci]

Browse files
Files changed (1) hide show
  1. README.md +3 -3
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: "3000:80"
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 -e PORT=8080 -p 3000:8080/tcp --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.
 
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.