mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
try to fix yml syntax same same same same2 same3 same4 same5 try with shell runner instead of dind remove lattice from dockerfile change path to bin runs after linux arm64 build change dockerfile path same same add dir better test coverage
23 lines
No EOL
409 B
Docker
23 lines
No EOL
409 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 LICENSE .
|
|
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"] |