feat: parse excel (#1383)

This commit is contained in:
yetone
2025-02-25 12:06:50 +08:00
committed by GitHub
parent 8d888c2861
commit a1d1697400
4 changed files with 8 additions and 13 deletions

View File

@@ -1,24 +1,16 @@
FROM debian:bookworm-slim
FROM python:3.11-slim-bookworm
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
curl \
RUN apt-get update && apt-get install -y curl \
&& rm -rf /var/lib/apt/lists/* \
&& curl -LsSf https://astral.sh/uv/install.sh | sh
ENV PATH="/root/.local/bin:$PATH"
RUN uv python install 3.11
RUN uv python list
ENV PATH="/root/.uv/python/3.11/bin:$PATH"
COPY requirements.txt .
RUN uv venv --python 3.11
RUN uv venv
RUN uv pip install -r requirements.txt