getaround_api / Dockerfile
NANA12A's picture
Upload Dockerfile
75fb6b1 verified
raw
history blame contribute delete
173 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]