Add local CLI #144

Merged
schmelczer merged 16 commits from asch/local-cli into main 2025-10-21 22:45:47 +01:00
Showing only changes of commit b8e862cb67 - Show all commits

View file

@ -8,7 +8,6 @@ RUN apt update && \
pkg-config && \
cargo install sqlx-cli
# Build application
COPY . .
RUN sqlx database create --database-url sqlite://db.sqlite3 && \
@ -28,7 +27,6 @@ RUN apt update && \
rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/src/backend/target/release/sync_server /app/sync_server
COPY test-entrypoint.sh /app/test-entrypoint.sh
RUN chmod +x /app/test-entrypoint.sh