From 0ddc9049ff13906ecb9205b6f4f45b3c5167ee76 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 8 Dec 2024 18:36:41 +0100 Subject: [PATCH] ci(build): :bug: Correctly copy project.inlang folder Its contents were being copied, not the whole folder itself --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 25f62d8..d108d96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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