Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ── Stage 1: build ──────────────────────────────────────────────────────────
# ── Stage 1: build ─────────────────────────────────────────────────────────
FROM python:3.11-slim AS builder

WORKDIR /app
Expand All @@ -13,10 +13,10 @@ COPY logsight/ logsight/
# Build the wheel
RUN python -m build --wheel --outdir /dist

# ── Stage 2: runtime ─────────────────────────────────────────────────────────
# ── Stage 2: runtime ────────────────────────────────────────────────────────
FROM python:3.11-slim AS runtime

LABEL maintainer="Trojan3877" \
LABEL maintainer="CoreyLeath-code" \
description="LogSight-AI: AI-powered log analysis and anomaly detection" \
version="0.1.0"

Expand Down