portfolio-backend / Dockerfile
Mrigank005's picture
Create Dockerfile
6ce62f4 verified
raw
history blame contribute delete
376 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
# Create a writable directory for Pinecone/System logs if needed
RUN mkdir -p /code/data && chmod 777 /code/data
# Command to start the server
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]