From 03f193090dc5c8aec13b23a27357779e179a3dac Mon Sep 17 00:00:00 2001 From: Stavros Date: Thu, 15 May 2025 15:57:12 +0300 Subject: [PATCH] fix: fix dockerfiles --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index aab29b8..15a227d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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