FROM alpine:3.22.1

RUN apk add --no-cache python3

WORKDIR /tmp

CMD ["python3", "-m", "http.server"]
