gemini2api / Dockerfile
ykl45's picture
Create Dockerfile
454b790 verified
raw
history blame
315 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/renqabs/Gmn2a.git /app
WORKDIR /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Command to run the application
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]