Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Dockerfile 313 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. FROM python:3.9.10
  2. EXPOSE 7860
  3. WORKDIR /app
  4. COPY requirements_heroku.txt requirements_heroku.txt
  5. RUN pip install -r requirements_heroku.txt
  6. COPY /app /app
  7. COPY /examples /examples
  8. COPY setup.sh setup.sh
  9. #ENV GRADIO_SERVER_NAME=0.0.0.0
  10. #ENV GRADIO_SERVER_PORT="$PORT"
  11. CMD ["python", "/app/app_savta.py"]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...