Spaces:
Running
Running
File size: 126 Bytes
450f71c |
1 2 3 4 |
FROM ubuntu:latest
RUN apt update -y && apt install python3 -y
COPY ./index.html .
CMD python3 -m http.server -b 0.0.0.0 7860 |