quality-check-app / Dockerfile
tiesan's picture
Upload 7 files
ca302ac
raw
history blame contribute delete
No virus
166 Bytes
FROM python:3.11.3
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY . /app/
CMD ["Gradio app.py" ]