File size: 1,069 Bytes
360d784
 
 
 
 
 
faf9dc6
 
360d784
 
 
 
 
 
 
faf9dc6
 
360d784
 
 
 
 
faf9dc6
360d784
faf9dc6
360d784
faf9dc6
360d784
faf9dc6
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
# Use a base image with Python3.9 and Nodejs20 slim version
FROM nikolaik/python-nodejs:python3.9-nodejs20-slim

USER root

# Install Debian software needed by MetaGPT and clean up in one RUN command to reduce image size
RUN sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list.d/debian.sources && \
    apt update &&\
    apt install -y git chromium fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends &&\
    apt clean && rm -rf /var/lib/apt/lists/*

# Install Mermaid CLI globally
ENV CHROME_BIN="/usr/bin/chromium" \
    PUPPETEER_CONFIG="/app/metagpt/config/puppeteer-config.json"\
    PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"

RUN npm install -g @mermaid-js/mermaid-cli --registry=http://registry.npmmirror.com &&\
    npm cache clean --force

# Install Python dependencies and install MetaGPT
COPY requirements.txt requirements.txt

RUN pip install --no-cache-dir -r requirements.txt  -i https://pypi.tuna.tsinghua.edu.cn/simple

WORKDIR /app

COPY . .

CMD ["uvicorn", "app:app"]