diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 55732c7..f329db5 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/oven/bun:1.3.13 AS deps +FROM docker.io/oven/bun:1.3.14 AS deps WORKDIR /app COPY package.json bun.lock tsconfig.base.json tsconfig.json ./ COPY apps/api/package.json apps/api/package.json @@ -9,7 +9,7 @@ FROM deps AS build COPY . . RUN bun run --filter @sentinel/api test -FROM docker.io/oven/bun:1.3.13 AS runner +FROM docker.io/oven/bun:1.3.14 AS runner WORKDIR /app COPY --from=build /app /app ENV PORT=3001 diff --git a/apps/dashboard/Dockerfile b/apps/dashboard/Dockerfile index 4bd4b56..c5fc57e 100644 --- a/apps/dashboard/Dockerfile +++ b/apps/dashboard/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/oven/bun:1.3.13 AS deps +FROM docker.io/oven/bun:1.3.14 AS deps WORKDIR /app COPY package.json bun.lock tsconfig.base.json tsconfig.json ./ COPY apps/dashboard/package.json apps/dashboard/package.json @@ -17,7 +17,7 @@ ENV SENTINEL_BUILD_RELEASE_TAG=${SENTINEL_BUILD_RELEASE_TAG} COPY . . RUN bun run --filter @sentinel/dashboard build -FROM docker.io/oven/bun:1.3.13 AS runner +FROM docker.io/oven/bun:1.3.14 AS runner WORKDIR /app COPY --from=build /app /app EXPOSE 5173 diff --git a/apps/dashboard/Dockerfile.dev b/apps/dashboard/Dockerfile.dev index 3c55eb7..c2e88bb 100644 --- a/apps/dashboard/Dockerfile.dev +++ b/apps/dashboard/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM docker.io/oven/bun:1.3.13 +FROM docker.io/oven/bun:1.3.14 RUN apt-get update \ && apt-get install -y --no-install-recommends git \ diff --git a/apps/indexer/Dockerfile b/apps/indexer/Dockerfile index 0112ae3..4f9f4bb 100644 --- a/apps/indexer/Dockerfile +++ b/apps/indexer/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/rust:1.94 AS test +FROM docker.io/library/rust:1.95 AS test WORKDIR /app COPY apps/indexer/Cargo.toml apps/indexer/Cargo.toml COPY apps/indexer/Cargo.lock apps/indexer/Cargo.lock @@ -6,7 +6,7 @@ COPY apps/indexer/src apps/indexer/src COPY apps/indexer/tests apps/indexer/tests RUN cargo test --locked --manifest-path apps/indexer/Cargo.toml -FROM docker.io/library/rust:1.94 AS builder +FROM docker.io/library/rust:1.95 AS builder WORKDIR /app COPY apps/indexer/Cargo.toml apps/indexer/Cargo.toml COPY apps/indexer/Cargo.lock apps/indexer/Cargo.lock