From f42571f37e67f6cb06f55ae289504cbce3a257b3 Mon Sep 17 00:00:00 2001 From: Fishandchips321 Date: Thu, 5 Mar 2026 15:01:22 +0000 Subject: [PATCH] fix(database): made sure the db folder exists for the docker container --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5f2751e..dae96f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,8 @@ EXPOSE 5001 COPY --from=dotnet_build /App/out . COPY --from=react_build /App/dist ./wwwroot +RUN mkdir db + ENV ASPNETCORE_URLS=http://+:5000 ENTRYPOINT ["dotnet", "JellyGlass-Backend.dll"] \ No newline at end of file