LeoBorai's picture
chore: tests in gradio ui
d7590e5
Raw
History Blame Contribute Delete
176 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src /app/src
EXPOSE 7860
CMD ["python", "src/test.py"]