mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-09 23:02:55 +00:00
* ci: install python3 and python3-dev in CI Dockerfile * ci: release the standalone binaries with pyo3 support for multiple platforms * refactor: install pip and pyarrow * refactor: specify the python version
18 lines
318 B
Docker
18 lines
318 B
Docker
FROM ubuntu:22.04
|
|
|
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
ca-certificates \
|
|
python3.10 \
|
|
python3.10-dev \
|
|
python3-pip
|
|
|
|
RUN python3 -m pip install pyarrow
|
|
|
|
ARG TARGETARCH
|
|
|
|
ADD $TARGETARCH/greptime /greptime/bin/
|
|
|
|
ENV PATH /greptime/bin/:$PATH
|
|
|
|
ENTRYPOINT ["greptime"]
|