Fix folder deletion (#140)

This commit is contained in:
Andras Schmelczer 2025-10-20 20:24:35 +01:00 committed by GitHub
parent aa73a5d718
commit 1ddba47b80
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 69 additions and 25 deletions

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,9 +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
VOLUME /data
EXPOSE 3000/tcp