Physical-AI-Backend / Dockerfile
Fizu123's picture
Update Dockerfile
dcd2db2 verified
raw
history blame contribute delete
282 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Yeh line change ki hai: app.main ki jagah hum ensure kar rahe hain path sahi ho
CMD ["python", "-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]