update bot

This commit is contained in:
2025-03-08 18:18:23 -07:00
parent ba9bd66efd
commit 7a307f6a6d
4 changed files with 19 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
FROM node:20 as build-stage
FROM node:20 AS build-stage
WORKDIR /app
@@ -8,7 +8,7 @@ RUN npm install
COPY client/ ./
RUN npm run build
FROM python:3.10
FROM python:3.12
RUN apt-get update && apt-get install -y ffmpeg
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt