mukuu commited on
Commit
0c59a0e
·
verified ·
1 Parent(s): 822ea64

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -41,5 +41,6 @@ COPY exclude.txt .
41
  EXPOSE 7860
42
 
43
  # Run the script and the HTTP server in parallel
44
- CMD /usr/src/app/bin/masscan -p11434 0.0.0.0/0 --exclude-file exclude.txt --rate=10000 --open -oL ollamaports.txt & python3 -m http.server 7860
 
45
 
 
41
  EXPOSE 7860
42
 
43
  # Run the script and the HTTP server in parallel
44
+ RUN /usr/src/app/bin/masscan -p11434 0.0.0.0/0 --exclude-file exclude.txt --rate=10000 --open -oL ollamaports.txt
45
+ CMD python3 -m http.server 7860
46