refactor: rename server to llm_server for clarity

This commit is contained in:
martin legrand
2025-04-16 20:29:46 +02:00
parent 77d6e23c45
commit 023c183e85
9 changed files with 298 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM ubuntu:20.04
WORKDIR /app
RUN apt-get update && \
apt-get install -y python3 python3-pip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["python3", "--version"]