fix: change pull_policy from build to never; remove dead fonts.ts

Co-authored-by: xCyanGrizzly <53275238+xCyanGrizzly@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-04 14:21:46 +00:00
parent 373f1f2f08
commit df006636de
2 changed files with 3 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: Dockerfile
pull_policy: build
pull_policy: never
ports:
- "${APP_PORT:-3000}:3000"
environment:
@@ -35,7 +35,7 @@ services:
build:
context: .
dockerfile: worker/Dockerfile
pull_policy: build
pull_policy: never
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER:-dragons}:${POSTGRES_PASSWORD:-stash}@db:5432/${POSTGRES_DB:-dragonsstash}
- TELEGRAM_API_ID=${TELEGRAM_API_ID:-}
@@ -67,7 +67,7 @@ services:
build:
context: .
dockerfile: bot/Dockerfile
pull_policy: build
pull_policy: never
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER:-dragons}:${POSTGRES_PASSWORD:-stash}@db:5432/${POSTGRES_DB:-dragonsstash}
- BOT_TOKEN=${BOT_TOKEN:-}

View File

@@ -1,6 +0,0 @@
import { Inter } from "next/font/google";
export const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
});