From 30ca4de27d0e96d64c07cfb44daf4af672420a2f Mon Sep 17 00:00:00 2001 From: Arlan Lloyd Date: Fri, 28 Mar 2025 13:24:27 +0000 Subject: [PATCH] fix: copy syntax for multiple file copy Signed-off-by: Arlan Lloyd --- content/blogs/phantom-token/api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/blogs/phantom-token/api/Dockerfile b/content/blogs/phantom-token/api/Dockerfile index 579f24e..f2cf999 100644 --- a/content/blogs/phantom-token/api/Dockerfile +++ b/content/blogs/phantom-token/api/Dockerfile @@ -1,10 +1,10 @@ FROM oven/bun WORKDIR /app -COPY package.json bun.lock . +COPY package.json bun.lock ./ RUN bun install --production -COPY index.ts tsconfig.json . +COPY index.ts tsconfig.json ./ ENV NODE_ENV=production RUN bun build \