gui-bom / Dockerfile
ObtuseAglet
Fix: standardize casing of "l-bom" in Dockerfile, output.py, scanner.py, app.js, and pyproject.toml
b65da42
raw
history blame contribute delete
233 Bytes
FROM python:3.11-slim
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY . .
RUN python -m pip install --upgrade pip && python -m pip install .
EXPOSE 7860
CMD ["l-bom", "gui", "--host", "0.0.0.0", "--port", "7860", "--no-open-browser"]