Spaces:
Running
Running
TomatoFull
commited on
Create Dockerfile
Browse files- 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
|