diff --git a/Dockerfile b/Dockerfile index 6600e511..ca243bc5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,17 @@ FROM python:3.12-slim +# Prevent interactive prompts during build +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=UTC + WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ ffmpeg \ curl \ + tzdata \ && rm -rf /var/lib/apt/lists/* # Copy backend diff --git a/Dockerfile.cuda b/Dockerfile.cuda index b6e67296..c03001fa 100644 --- a/Dockerfile.cuda +++ b/Dockerfile.cuda @@ -2,6 +2,10 @@ FROM nvidia/cuda:12.1.1-runtime-ubuntu22.04 +# Prevent interactive prompts during build +ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=UTC + WORKDIR /app # Install Python 3.12 @@ -14,6 +18,7 @@ RUN apt-get update && apt-get install -y \ python3-pip \ ffmpeg \ curl \ + tzdata \ && rm -rf /var/lib/apt/lists/* # Set Python 3.12 as default diff --git a/tauri/src-tauri/gen/Assets.car b/tauri/src-tauri/gen/Assets.car index d44f6eaf..38d62c7e 100644 Binary files a/tauri/src-tauri/gen/Assets.car and b/tauri/src-tauri/gen/Assets.car differ