fix: fix dockerfiles

This commit is contained in:
Stavros
2025-05-15 15:57:12 +03:00
parent 3612ac0740
commit 03f193090d

View File

@@ -4,7 +4,7 @@ FROM oven/bun:1.2.12-alpine AS frontend-builder
WORKDIR /frontend
COPY ./frontend/package.json ./
COPY ./frontend/bun.lockb ./
COPY ./frontend/bun.lock ./
RUN bun install
@@ -16,7 +16,6 @@ COPY ./frontend/tsconfig.json ./
COPY ./frontend/tsconfig.app.json ./
COPY ./frontend/tsconfig.node.json ./
COPY ./frontend/vite.config.ts ./
COPY ./frontend/postcss.config.cjs ./
RUN bun run build