chore: update Dockerfile to use full image path and add Docker publish workflow

This commit is contained in:
2026-04-25 21:04:37 +03:00
parent 8329fc73e0
commit 0c54498d34
2 changed files with 58 additions and 2 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM oven/bun:1 AS base
FROM docker.io/oven/bun:1 AS base
WORKDIR /app
FROM base AS deps
@@ -23,7 +23,7 @@ ENV NODE_ENV=production
RUN bun run db:generate
RUN bun run build
FROM oven/bun:1 AS runner
FROM docker.io/oven/bun:1 AS runner
WORKDIR /app
ENV NODE_ENV=production
ENV PORT=3000