feat: 移除 Dockerfile 中的 gcc、g++ 和 make 安装步骤 #5

Merged
chenjiale merged 1 commits from cjl-dev into master 2 weeks ago
  1. 7
      Dockerfile
  2. BIN
      requirements.txt

7
Dockerfile

@ -4,13 +4,6 @@ WORKDIR /app
COPY requirements.txt .
RUN apt-get update && apt-get install -y \
gcc \
g++ \
make \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
COPY . .

BIN
requirements.txt

Binary file not shown.
Loading…
Cancel
Save