From 7a66b1f706215384ca0104da115a271a4c4c2bfa Mon Sep 17 00:00:00 2001 From: Robert Jambrecic Date: Mon, 24 Jun 2024 11:51:47 +0200 Subject: [PATCH] Copy migrations within the Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9ba56b8..df526f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,7 @@ RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1 RUN python3 -m pip install --upgrade pip COPY google_sheets ./google_sheets +COPY migrations ./migrations COPY scripts/* schema.prisma pyproject.toml README.md ./ RUN pip install -e ".[dev]"