Skip to content

Commit

Permalink
Revert to pypi packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored Aug 22, 2024
1 parent 2ca5fa2 commit 3b42099
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 2,10 @@ FROM python:3.8.10-slim
WORKDIR /app
ADD requirements.txt .
RUN apt update && apt install -y binutils wget \
# && pip install -r requirements.txt \
&& pip install Flask flask_httpauth \
&& wget https://github.com/chdb-io/chdb/releases/download/v2.0.0b1/chdb-2.0.0b1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl -P /tmp/ \
&& pip install /tmp/*.whl \
&& pip install -r requirements.txt \
# && pip install Flask flask_httpauth \
# && wget https://github.com/chdb-io/chdb/releases/download/v2.0.0b1/chdb-2.0.0b1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl -P /tmp/ \
# && pip install /tmp/*.whl \
&& strip /usr/local/lib/python3.8/site-packages/chdb/_chdb.cpython-38-*-linux-gnu.so \
&& rm -rf /var/lib/apt/lists/* && rm -rf ~/.cache/pip/*
ADD main.py .
Expand Down

0 comments on commit 3b42099

Please sign in to comment.