Skip to content

Commit 57d521e

Browse files
committed
fix: docker build and improve mcp docs server with ai search
1 parent 2a5f797 commit 57d521e

File tree

11 files changed

+2968
-4748
lines changed

11 files changed

+2968
-4748
lines changed

.goreleaser.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ dockers:
130130
- "--label=org.opencontainers.image.title={{.ProjectName}}"
131131
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
132132
- "--label=org.opencontainers.image.version={{.Version}}"
133+
extra_files:
134+
- man/
133135
skip_push: false
134136

135137
# Announce releases

Dockerfile.goreleaser

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ RUN mkdir -p /usr/local/share/man/man1
1717
COPY vapi /usr/local/bin/vapi
1818

1919
# Copy man pages from GoReleaser (if available)
20-
COPY man/*.1 /usr/local/share/man/man1/
20+
# Use a wildcard copy that won't fail if no files match
21+
COPY --chmod=644 man/ /usr/local/share/man/man1/
2122

2223
# Set ownership and permissions (mandoc doesn't need database updates)
2324
RUN chown vapi:vapi /usr/local/bin/vapi && \

0 commit comments

Comments
 (0)