Compare commits

..

13 Commits

Author SHA1 Message Date
phoenix 101ce15af7 bump: songparser
Rust Build / Rustfmt (pull_request) Successful in 27s
Rust Build / Check (pull_request) Successful in 57s
Rust Build / Test Suite (pull_request) Successful in 1m2s
Rust Build / Clippy (pull_request) Successful in 1m21s
Rust Build / build (pull_request) Successful in 1m35s
2026-05-05 21:23:17 -04:00
phoenix 9f4003e1be cargo update 2026-05-05 21:22:11 -04:00
phoenix 42c839cfe3 cargo fmt 2026-05-05 21:21:16 -04:00
phoenix 31cd6c40b4 bump: icarus_envy 2026-05-05 21:21:02 -04:00
phoenix 79d3c77316 bump: icarus_models 2026-05-05 21:20:27 -04:00
phoenix ff331d6f20 bump: icarus_meta 2026-05-05 21:19:55 -04:00
phoenix 98d23ba9ab bump: reqwest 2026-05-05 21:17:00 -04:00
phoenix c8338be49d bump: rust docker 2026-05-05 21:11:34 -04:00
phoenix f43e221e2a bump: tokio 2026-05-05 21:11:24 -04:00
phoenix 1991747712 bump: rand 2026-05-05 21:10:29 -04:00
phoenix f2eccb9594 bump: uuid 2026-05-05 21:09:38 -04:00
phoenix b34fad0cf0 bump: rust ci 2026-05-05 21:08:53 -04:00
phoenix 5c59468b62 bump: rust 2026-05-05 21:08:35 -04:00
3 changed files with 3 additions and 7 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
ROOT_DIRECTORY=/usr/local/bin
ICARUS_BASE_API_URL=http://api:8000
ICARUS_AUTH_BASE_API_URL=http://auth_api:8001
ICARUS_BASE_API_URL=http://api:3000
ICARUS_AUTH_BASE_API_URL=http://auth_api:3000
SERVICE_PASSPHRASE=iUOo1fxshf3y1tUGn1yU8l9raPApHCdinW0VdCHdRFEjqhR3Bf02aZzsKbLtaDFH
-4
View File
@@ -1,4 +0,0 @@
ROOT_DIRECTORY=/tmp
ICARUS_BASE_API_URL=http://localhost:8000
ICARUS_AUTH_BASE_API_URL=http://localhost:8001
SERVICE_PASSPHRASE=iUOo1fxshf3y1tUGn1yU8l9raPApHCdinW0VdCHdRFEjqhR3Bf02aZzsKbLtaDFH
+1 -1
View File
@@ -42,7 +42,7 @@ RUN --mount=type=ssh \
# Stage 2: Create the final, smaller runtime image
# Use a minimal base image like debian-slim or even distroless for security/size
FROM debian:trixie-slim
FROM ubuntu:24.04
# Install runtime dependencies if needed (e.g., SSL certificates)
RUN apt-get update && apt-get install -y ca-certificates libssl-dev libssl3 && rm -rf /var/lib/apt/lists/*