From 9ef94e73dd0385e2fcb236e0fb4bf6df9ec08a68 Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Thu, 10 Apr 2025 13:38:22 +0200 Subject: [PATCH] Add job processing system with streaming endpoint Introduced a `processing` router to handle job streaming using server-sent events. Added `Jobs` and `JobStatus` models for managing job-related data, along with database creation logic. Updated the `sample` router to create new job entries during experiment creation. --- backend/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index e4ac137..f009e24 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -36,6 +36,8 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application code COPY . /app +RUN mkdir -p /app/backend/ssl + # Expose the application port EXPOSE 8000