FROM python:3.8-alpine EXPOSE 8000 COPY . . ENTRYPOINT ["/bin/sh"] RUN apk add --no-cache curl CMD ["-c", "python -m http.server --bind 0.0.0.0 --directory . 8000"]