Spaces:
Runtime error
Runtime error
File size: 646 Bytes
54e091e d038098 2ecf368 2121260 d038098 474131a d038098 474131a d038098 f1e8e34 d038098 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM python:3.12
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
# Expose the secret SECRET_EXAMPLE at buildtime and use its value as git remote URL
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN --mount=type=secret,id=PINECONE_API_KEY,mode=0444,required=true \
cat /run/secrets/PINECONE_API_KEY > /app/test
RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true \
cat /run/secrets/OPENAI_API_KEY > /app/test
COPY --chown=user ./app /app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"] |