mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
24 lines
404 B
Docker
24 lines
404 B
Docker
FROM alpine:3.14.2
|
|
|
|
LABEL maintainer "dev@molecula.com"
|
|
LABEL org.opencontainers.image.authors="dev@molecula.com"
|
|
|
|
ARG ARCH
|
|
|
|
WORKDIR /
|
|
|
|
RUN apk add --no-cache curl jq
|
|
|
|
COPY NOTICE .
|
|
COPY featurebase_linux_$ARCH featurebase
|
|
|
|
RUN chmod ugo+x .
|
|
EXPOSE 10101
|
|
VOLUME /data
|
|
|
|
ENV PILOSA_DATA_DIR /data
|
|
ENV PILOSA_BIND 0.0.0.0:10101
|
|
ENV PILOSA_BIND_GRPC 0.0.0.0:20101
|
|
|
|
ENTRYPOINT ["/featurebase"]
|
|
CMD ["server"]
|