Update Dockerfile to support multi-platform builds and enhance project rules for source code organization.

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-06 04:59:37 +03:00
parent 4c7f479398
commit 667c9f8153
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM oven/bun:1-alpine AS build
FROM --platform=$BUILDPLATFORM oven/bun:1-alpine AS build
WORKDIR /app
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile