TomatoFull commited on
Commit
450f71c
·
verified ·
1 Parent(s): bb3ad3a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ FROM ubuntu:latest
2
+ RUN apt update -y && apt install python3 -y
3
+ COPY ./index.html .
4
+ CMD python3 -m http.server -b 0.0.0.0 7860