Sham-Images / Dockerfile
TomatoFull's picture
Create Dockerfile
450f71c verified
raw
history blame contribute delete
126 Bytes
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