Hi,
The license key works when i activate locally on my machine but it does not when trying the same with Dockerfile. Here's the dockerfile code:
ENV KENDO_UI_LICENSE= ${KENDO_UI_LICENSE_KEY}
RUN echo ${KENDO_UI_LICENSE_KEY} > kendo-ui-license.txt
RUN npm install
COPY . /app
RUN ng build --prod
The docker build gave the following error. Please help. The signature is valid as I have activated the same
llicense key on local machine.
=> [build 9/11] COPY . /app 17.9s
=> ERROR [build 10/11] RUN npx kendo-ui-license activate 1.0s
------
> [build 10/11] RUN npx kendo-ui-license activate:
0.939 (INFO) Kendo UI: Reading license from KENDO_UI_LICENSE environment variable...
0.941 (ERROR) Kendo UI: License key signature is not valid. Please, download a new copy of the license and try again.
------