From 5ef157734458b799f6dc066f50a0f2404d717160 Mon Sep 17 00:00:00 2001 From: virtus Date: Thu, 30 Apr 2026 02:13:55 +0700 Subject: [PATCH] fix(docker): ensure all necessary directories are copied to the Docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e60ec2c..906142e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ RUN uv sync --no-dev COPY app ./app COPY prisma ./prisma +COPY scripts ./scripts +COPY migrations ./migrations EXPOSE 8000