diff --git a/Dockerfile b/Dockerfile index 4f14e9e..6a9173a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,10 @@ FROM oven/bun:1.2.21-slim WORKDIR /app +RUN apt-get update \ + && apt-get install -y --no-install-recommends ca-certificates curl \ + && rm -rf /var/lib/apt/lists/* + COPY package.json bun.lock ./ RUN bun install --frozen-lockfile --production diff --git a/scripts/src/cli.ts b/scripts/src/cli.ts index 7bd1027..0e72edc 100644 --- a/scripts/src/cli.ts +++ b/scripts/src/cli.ts @@ -124,7 +124,7 @@ async function remote(parsed: Parsed, config: ReturnType, tar checks: { status: status.ok === true, scores: scores.ok === true, - refresh: refreshed.ok === true, + refresh: refreshed.ok === true && refreshed.snapshotOk === true, ranking: ranking.ok === true, lottery: lottery.ok === true, },