mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-27 08:29:59 +00:00
* ci: remove ubuntu 20.04 runners * chore: update ec2-github-runner action as author suggests * fix: use latest ubuntu image for fuzz test * Update action.yml * Update action.yml --------- Co-authored-by: shuiyisong <113876041+shuiyisong@users.noreply.github.com> Co-authored-by: liyang <daviderli614@gmail.com>
17 lines
392 B
Docker
17 lines
392 B
Docker
FROM ubuntu:latest
|
|
|
|
# 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"]
|