getaround_deployment / Dockerfile
FAYCEL75's picture
Create Dockerfile
609083f verified
raw
history blame contribute delete
208 Bytes
FROM python:3.10
WORKDIR /code
COPY requirements.txt /code/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /code/
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]