medgemma / Dockerfile
crespo12's picture
nb
d924411
raw
history blame contribute delete
183 Bytes
FROM python:3.10
WORKDIR /app
COPY requirement.txt .
RUN pip install --no-cache-dir -r requirement.txt
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]