This commit is contained in:
UrloMythus
2025-07-18 09:51:51 +02:00
parent e1b7376b8b
commit abf282c770
10 changed files with 16 additions and 167 deletions

View File

@@ -1,21 +1,8 @@
FROM python:3.10-slim-buster
# Set the working directory in the container to /app
FROM python:3.11-slim-bullseye
WORKDIR /app
# Install git
RUN apt-get update && apt-get install -y git
# Clone the repository
RUN git clone https://github.com/YourUsername/YourRepoName.git .
# Copy the local config.json file to the container
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "7860", "--workers", "4"]
EXPOSE 8888
# Run run.py when the container launches
CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "8888", "--workers", "4"]