xiaowei / Dockerfile
qitongwei's picture
Update Dockerfile
4bda13d verified
raw
history blame
1.1 kB
# Pull the base image
FROM ghcr.io/danny-avila/librechat@sha256:d485be7fe3101c3f2599ca586e75106e01da42dd1981e57295838c5f1726b3d1
# Set environment variables
ENV HOST=0.0.0.0
ENV PORT=7860
ENV SESSION_EXPIRY=900000
ENV REFRESH_TOKEN_EXPIRY=604800000
ENV OPENAI_REVERSE_PROXY=https://api.zanity.net/v1
ENV ANTHROPIC_REVERSE_PROXY=https://linux-do-do.linuxdoi.workers.dev
ENV GOOGLE_SAFETY_SEXUALLY_EXPLICIT=BLOCK_ONLY_HIGH
ENV GOOGLE_SAFETY_HATE_SPEECH=BLOCK_ONLY_HIGH
ENV GOOGLE_SAFETY_HARASSMENT=BLOCK_ONLY_HIGH
ENV GOOGLE_SAFETY_DANGEROUS_CONTENT=BLOCK_ONLY_HIGH
# Create necessary directories
RUN mkdir -p /app/uploads/temp
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/uploads/temp
RUN chmod -R 777 /app/client/public/images
RUN chmod -R 777 /app/api/logs/
RUN chmod -R 777 /app/data
# Copy Custom Endpoints Config
COPY librechat.yaml /app/librechat.yaml
# Install dependencies
RUN cd /app/api && npm install
# Command to run on container start
CMD ["npm", "run", "backend"]