adk-gradio / Dockerfile
p3nguknight
Try again with docker
7919233
raw
history blame contribute delete
211 Bytes
FROM python:3.12-slim
WORKDIR /usr/src/app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
ENV GRADIO_SERVER_PORT=8000
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py"]