dl4ds_tutor / Dockerfile
XThomasBU
docker changes
3697668
raw
history blame
No virus
1.39 kB
FROM python:3.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r /code/requirements.txt
COPY . /code
# List the contents of the /code directory to verify files are copied correctly
RUN ls -R /code
# Change permissions to allow writing to the directory
RUN chmod -R 777 /code
# Create a logs directory and set permissions
RUN mkdir /code/logs && chmod 777 /code/logs
# Create a cache directory within the application's working directory
RUN mkdir /.cache && chmod -R 777 /.cache
WORKDIR /code/code
RUN --mount=type=secret,id=HUGGINGFACEHUB_API_TOKEN,mode=0444,required=true
RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true
RUN --mount=type=secret,id=CHAINLIT_URL,mode=0444,required=true
RUN --mount=type=secret,id=LITERAL_API_URL,mode=0444,required=true
RUN --mount=type=secret,id=LLAMA_CLOUD_API_KEY,mode=0444,required=true
RUN --mount=type=secret,id=OAUTH_GOOGLE_CLIENT_ID,mode=0444,required=true
RUN --mount=type=secret,id=OAUTH_GOOGLE_CLIENT_SECRET,mode=0444,required=true
RUN --mount=type=secret,id=LITERAL_API_KEY_LOGGING,mode=0444,required=true
RUN --mount=type=secret,id=CHAINLIT_AUTH_SECRET,mode=0444,required=true
# Default command to run the application
CMD ["sh", "-c", "python -m modules.vectorstore.store_manager && uvicorn app:app --host 0.0.0.0 --port 7860"]