savtadepth / Dockerfile
Abid
requrement corrected
91c51c1
raw
history blame
296 Bytes
FROM python:3.9.10
#EXPOSE $PORT
WORKDIR /app
COPY requirements_heroku.txt requirements_heroku.txt
RUN pip install -r requirements_heroku.txt
COPY /app /app
COPY /examples /examples
CMD export GRADIO_SERVER_NAME=0.0.0.0
CMD export GRADIO_SERVER_PORT="$PORT"
CMD python /app/app_savta.py