File size: 1,100 Bytes
18769af
77f02b2
18769af
 
 
 
 
 
0d8d86a
18769af
 
 
32020e1
 
 
 
18769af
da233d0
bb1e07c
18769af
4f13733
 
 
 
bb1e07c
18769af
4f13733
 
18769af
bb1e07c
 
a148b3d
bb1e07c
18769af
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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

# 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://mikvlw-meilisearch.hf.space
ENV MEILI_HTTP_ADDR=https://mikvlw-meilisearch.hf.space

# 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
# RUN curl -o /app/librechat.yaml https://raw.githubusercontent.com/fuegovic/lc-config-yaml/main/librechat.yaml
COPY ./librechat.yaml /app/librechat.yaml

# Install dependencies
RUN cd /app/api && npm install

# Command to run on container start
CMD ["npm", "run", "backend"]