Spaces:
Sleeping
Sleeping
FROM ghcr.io/danny-avila/librechat-dev:latest | |
EXPOSE 3080 | |
# Set environment variables | |
ENV HOST=0.0.0.0 | |
ENV PORT=3080 | |
ENV SESSION_EXPIRY=900000 | |
ENV REFRESH_TOKEN_EXPIRY=604800000 | |
# The following OpenAI models will be available in the WebUI, you can customize the list if you want to | |
ENV OPENAI_MODELS=gpt-3.5-turbo-1106,gpt-4-1106-preview,gpt-4-vision-preview,gpt-3.5-turbo,gpt-3.5-turbo-16k,gpt-3.5-turbo-0301,text-davinci-003,gpt-4,gpt-4-0314,gpt-4-0613 | |
ENV PLUGIN_MODELS=gpt-3.5-turbo-1106,gpt-4-1106-preview,gpt-4-vision-preview,gpt-3.5-turbo,gpt-3.5-turbo-16k,gpt-3.5-turbo-0301,text-davinci-003,gpt-4,gpt-4-0314,gpt-4-0613 | |
# Uncomment the following ENV to enable search | |
# Feel free to clone our meilisearch space and update the URL with your own | |
# ENV SEARCH=true | |
# ENV MEILI_NO_ANALYTICS=true | |
# ENV MEILI_HOST=https://librechat-meilisearch.hf.space | |
# ENV MEILI_HTTP_ADDR=https://librechat-meilisearch.hf.space | |
# Create necessary directories for vision | |
RUN mkdir -p /app/client/public/images/temp | |
RUN mkdir -p /app/api/logs/ | |
RUN mkdir -p /app/data | |
# Give write permission to the directory | |
RUN chmod -R 777 /app/client/public/images | |
RUN chmod -R 777 /app/api/logs/ | |
RUN chmod -R 777 /app/data | |
# Install dependencies | |
RUN cd /app/api && npm install | |
# Command to run on container start | |
CMD | |