7 lines
78 B
Docker
7 lines
78 B
Docker
FROM python:latest
|
|
|
|
COPY build/ .
|
|
|
|
EXPOSE 5006
|
|
|
|
CMD python -m http.server 5006 |