mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* CI: ee msi build * shellcheck * Fake it so that we get a ee msi build on pull request runs * fix error in prep job * save msi for testing * get enterprise zip * Fixes to version and hash detection. * Removes ci test code
14 lines
377 B
Docker
14 lines
377 B
Docker
FROM grafana/wix-toolset-ci:v3
|
|
|
|
RUN mkdir -p /tmp/dist /tmp/cache && \
|
|
cd /tmp/dist && \
|
|
wget https://dl.grafana.com/enterprise/master/grafana-enterprise-6.6.0-ca61af52pre.windows-amd64.zip && \
|
|
unzip -l *.zip
|
|
|
|
COPY . /package-grafana
|
|
WORKDIR /package-grafana
|
|
|
|
RUN cp ./msigenerator/cache/nssm-2.24.zip /tmp/cache
|
|
|
|
RUN cd msigenerator && python3 generator/build.py
|