From 282a33eedd3d93e2df508fe0153c81e65454ea13 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Tue, 8 Apr 2025 21:52:33 +0200 Subject: [PATCH] some dockers vers requires trailing / on dest folder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e112690..744e4b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY src/ src COPY static/ static -COPY package.json yarn.lock svelte.config.js tsconfig.json vite.config.ts . +COPY package.json yarn.lock svelte.config.js tsconfig.json vite.config.ts ./ RUN yarn RUN yarn build