Open felipemm opened 1 month ago
I am facing the same issue.
I'm facing this same issue. I managed to workaround this by targeting version 0.35.81. Something in the 0.36 release introduced this, and I can't documentation about how to resolve.
Same issue, anyone managed to fix?
Thanks for reporting, everyone. I was able to reproduce this on v1.0.5 as well.
same issue - is there a workaround?
As a temporary workaround we have it working with this Dockerfile. Not a long term solution but solves the issue for the time being.
FROM cubejs/cube:v1.0-jdk
USER root
RUN apt-get update && apt-get upgrade -y \
gcc \
make \
build-essential \
python3-pip \
openjdk-17-jdk \
&& apt-get -qq clean \
&& rm -rf /var/lib/apt/lists/*
COPY . .
WORKDIR /cube/conf
RUN npm install java
USER cube
Describe the bug Trying to create a new cube container and connect to a databricks warehouse. After following documentation and creating the docker-composer and dockerfile accordingly, it gives this error when accessing data model tab. PS: Using dev mode, because I do not have a model yet (just started using cube for testing purposes).
docker-compose.yml
Dockerfile
.env
To Reproduce Steps to reproduce the behavior:
docker-compose build --no-cache
docker-compose up
Expected behavior A clear and concise description of what you expected to happen.
Screenshots
Version: 0.36
Additional context Running docker version 27.2.0, build 3ab4256 on macOS Sonoma (x86)