File size: 288 Bytes
c6df6d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM ghcr.io/h88782481/chat-share:latest

COPY start.sh .

RUN chmod +x /app/start.sh

RUN pip install --no-cache-dir --upgrade pip \
 && pip install --no-cache-dir huggingface-hub
 
RUN mkdir -p /app/data \
 && chmod -R a+rwX /app/data

EXPOSE 5100

CMD ["bash", "-c", "exec ./start.sh"]