mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
22 lines
No EOL
394 B
Docker
22 lines
No EOL
394 B
Docker
FROM alpine:3.14.2
|
|
|
|
LABEL maintainer "dev@molecula.com"
|
|
LABEL org.opencontainers.image.authors="dev@molecula.com"
|
|
|
|
WORKDIR /featurebase
|
|
|
|
RUN apk add --no-cache curl jq
|
|
|
|
COPY NOTICE .
|
|
COPY featurebase_linux_amd64 .
|
|
|
|
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"] |