Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions apps/indexer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
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
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
Expand Down