Docker cleanup
All checks were successful
Rust Build / Check (pull_request) Successful in 1m3s
Rust Build / Test Suite (pull_request) Successful in 1m32s
Rust Build / Rustfmt (pull_request) Successful in 40s
Rust Build / Clippy (pull_request) Successful in 1m2s
Rust Build / build (pull_request) Successful in 1m38s

This commit is contained in:
2025-04-13 14:02:17 -04:00
parent 209fdd4fa9
commit 0f5db490b0
2 changed files with 0 additions and 5 deletions

View File

@@ -9,8 +9,6 @@ pkg/
# Ignore environment files (configure via docker-compose instead) # Ignore environment files (configure via docker-compose instead)
.env* .env*
auth_db.env*
auth_db.env.docker*
# Ignore IDE/editor specific files # Ignore IDE/editor specific files
.idea/ .idea/

View File

@@ -61,9 +61,6 @@ COPY --from=builder /usr/src/app/target/release/icarus_auth .
# Copy other necessary files like .env (if used for runtime config) or static assets # Copy other necessary files like .env (if used for runtime config) or static assets
# It's generally better to configure via environment variables in Docker though # It's generally better to configure via environment variables in Docker though
COPY --from=builder /usr/src/app/.env . COPY --from=builder /usr/src/app/.env .
# COPY --from=builder /usr/src/app/auth_db.env.docker auth_db.env
# COPY --from=builder /usr/src/app/auth_db.env.docker ./auth_db.env
# COPY --from=builder /usr/src/app/auth_db.env .
COPY --from=builder /usr/src/app/migrations ./migrations COPY --from=builder /usr/src/app/migrations ./migrations
# Expose the port your Axum app listens on (e.g., 3000 or 8000) # Expose the port your Axum app listens on (e.g., 3000 or 8000)