mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-27 16:32:54 +00:00
* chore(ci): add cfg for setup GreptimeDB cluster * chore: use kind * chore: always print info * chore: add debug print * chore: set etcd replica to 1 * ci: refactor e2e cfg * ci: add Fuzz Test for distributed mode * Apply suggestions from code review * chore: apply suggestions from CR * chore(ci): upload logs
17 lines
391 B
Docker
17 lines
391 B
Docker
FROM ubuntu:22.04
|
|
|
|
# The binary name of GreptimeDB executable.
|
|
# Defaults to "greptime", but sometimes in other projects it might be different.
|
|
ARG TARGET_BIN=greptime
|
|
|
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
ca-certificates \
|
|
curl
|
|
|
|
ARG BINARY_PATH
|
|
ADD $BINARY_PATH/$TARGET_BIN /greptime/bin/
|
|
|
|
ENV PATH /greptime/bin/:$PATH
|
|
|
|
ENTRYPOINT ["greptime"]
|