8 lines
85 B
Docker
8 lines
85 B
Docker
FROM python:3.11-alpine
|
|
|
|
WORKDIR /var/www/html/
|
|
|
|
COPY . .
|
|
|
|
CMD python -m http.server
|