docker_test / Dockerfile
Yusif
Update Dockerfile
0667267 verified
raw
history blame
105 Bytes
FROM python:3.12
#ADD app.py .
COPY . .
RUN pip install --no-cache-dir gradio
CMD ["python", "app.py"]