Improve Gradio UI and fix arch_state bug (#227)

This commit is contained in:
Adil Hafeez 2024-10-29 11:27:13 -07:00 committed by GitHub
parent 662a840ac5
commit 60299244b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 209 additions and 262 deletions

View file

@ -8,13 +8,11 @@ COPY requirements.txt /src/
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
COPY . /src
FROM python:3.10-slim AS output
COPY --from=builder /runtime /usr/local
COPY /app /app
WORKDIR /app
COPY *.py .
CMD ["python", "run.py"]
CMD ["python", "run_stream.py"]