Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.

Commit cc6d88d

Browse files
ci(docker): update Dockerfile to use proto submodule
Changed from copying old src/proto to using vendor/snapchain/proto. Removed runtime proto copy since protos are compiled into the binary. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f552c19 commit cc6d88d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
1010
COPY Cargo.toml build.rs ./
1111
COPY .sqlx ./.sqlx
1212
COPY migrations ./migrations
13-
COPY src/proto ./src/proto
13+
COPY vendor/snapchain/proto ./vendor/snapchain/proto
1414
COPY src ./src
1515
# SQLx offline mode
1616
ARG SQLX_OFFLINE=true
@@ -29,7 +29,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2929
&& rm -rf /var/lib/apt/lists/*
3030
WORKDIR /app
3131
COPY --from=builder /usr/src/waypoint/target/release/waypoint /app/
32-
COPY --from=builder /usr/src/waypoint/src/proto /app/proto
3332
RUN chmod +x /app/waypoint
3433
ENV RUST_BACKTRACE=full
3534
# Default command

0 commit comments

Comments
 (0)