FROM python:3.12-slim

WORKDIR /app

COPY public /app

EXPOSE 8080

CMD ["python3", "-m", "http.server", "7112", "--bind", "0.0.0.0"]
