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 298 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
  1. # FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8-slim
  2. # EXPOSE 8000
  3. # COPY ./app app
  4. # RUN pip install -r app/requirements.txt
  5. # CMD ["python3", "fastapi/app/main.py"]
  6. FROM python:3.8
  7. EXPOSE 8080
  8. WORKDIR /app
  9. COPY ./app app
  10. RUN pip install -r app/requirements.txt
  11. CMD ["python3", "app/start.py"]
Tip!

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

Comments

Loading...