feat: parse excel (#1383)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user