ci(build): 🐛 Correctly copy project.inlang folder

Its contents were being copied, not the whole folder itself
This commit is contained in:
Jesse Wierzbinski 2024-12-08 18:36:41 +01:00
parent b77f8dd513
commit 0ddc9049ff
No known key found for this signature in database

View file

@ -6,7 +6,8 @@ FROM imbios/bun-node:22-alpine AS base
FROM base AS install
RUN mkdir -p /temp/dev
COPY package.json bun.lockb project.inlang /temp/dev/
COPY package.json bun.lockb /temp/dev/
COPY project.inlang /temp/dev/project.inlang
RUN cd /temp/dev && bun install --frozen-lockfile
FROM base AS builder