Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ARG VERSION=dev
RUN CGO_ENABLED=0 go build -ldflags="-s -w -X github.com/TerrifiedBug/vectorflow/agent/internal/agent.Version=${VERSION}" -o /vf-agent .

# Stage 2: Download Vector
# Keep this default in sync with src/lib/vector-version.ts (canonical source).
FROM alpine:3.21 AS vector
ARG VECTOR_VERSION=0.54.0
RUN apk add --no-cache curl && \
Expand Down
1 change: 1 addition & 0 deletions agent/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ VECTOR_DATA_DIR="/var/lib/vector"
CONFIG_DIR="/etc/vectorflow"
ENV_FILE="${CONFIG_DIR}/agent.env"
SERVICE_NAME="vf-agent"
# Keep this in sync with src/lib/vector-version.ts (canonical source).
VECTOR_VERSION="0.54.0"

# Defaults
Expand Down
3 changes: 2 additions & 1 deletion docker/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ RUN --mount=type=cache,target=/root/.local/share/pnpm/store \
pnpm install --frozen-lockfile

# ---- Stage 2: Download Vector binary (cached unless VECTOR_VERSION changes) ----
# Keep this default in sync with src/lib/vector-version.ts (canonical source).
FROM alpine:3.21 AS vector
ARG VECTOR_VERSION=0.53.0
ARG VECTOR_VERSION=0.54.0
RUN apk add --no-cache curl && \
curl -sSfL -o /tmp/vector.tar.gz \
"https://packages.timber.io/vector/${VECTOR_VERSION}/vector-${VECTOR_VERSION}-x86_64-unknown-linux-musl.tar.gz" && \
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"diff": "^8.0.3",
"dotenv": "^17.3.1",
"ioredis": "^5.10.1",
Expand All @@ -53,6 +54,7 @@
"qrcode": "^1.5.4",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.3",
"react-grid-layout": "^2.2.2",
"react-hook-form": "^7.71.2",
Expand Down
41 changes: 41 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading