-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31d4274
commit c48b174
Showing
7,883 changed files
with
551,960 additions
and
351,056 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
198 changes: 198 additions & 0 deletions
198
Source/Applications/openHistorian/openHistorian/Grafana/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
# syntax=docker/dockerfile:1 | ||
|
||
ARG BASE_IMAGE=alpine:3.19.1 | ||
ARG JS_IMAGE=node:20-alpine | ||
ARG JS_PLATFORM=linux/amd64 | ||
ARG GO_IMAGE=golang:1.23.1-alpine | ||
|
||
ARG GO_SRC=go-builder | ||
ARG JS_SRC=js-builder | ||
|
||
FROM --platform=${JS_PLATFORM} ${JS_IMAGE} as js-builder | ||
|
||
ENV NODE_OPTIONS=--max_old_space_size=8000 | ||
|
||
WORKDIR /tmp/grafana | ||
|
||
COPY package.json project.json nx.json yarn.lock .yarnrc.yml ./ | ||
COPY .yarn .yarn | ||
COPY packages packages | ||
COPY plugins-bundled plugins-bundled | ||
COPY public public | ||
COPY LICENSE ./ | ||
COPY conf/defaults.ini ./conf/defaults.ini | ||
|
||
RUN apk add --no-cache make build-base python3 | ||
|
||
RUN yarn install --immutable | ||
|
||
COPY tsconfig.json .eslintrc .editorconfig .browserslistrc .prettierrc.js ./ | ||
COPY scripts scripts | ||
COPY emails emails | ||
|
||
ENV NODE_ENV production | ||
RUN yarn build | ||
|
||
FROM ${GO_IMAGE} as go-builder | ||
|
||
ARG COMMIT_SHA="" | ||
ARG BUILD_BRANCH="" | ||
ARG GO_BUILD_TAGS="oss" | ||
ARG WIRE_TAGS="oss" | ||
ARG BINGO="true" | ||
|
||
RUN if grep -i -q alpine /etc/issue; then \ | ||
apk add --no-cache \ | ||
# This is required to allow building on arm64 due to https://github.com/golang/go/issues/22040 | ||
binutils-gold \ | ||
bash \ | ||
# Install build dependencies | ||
gcc g++ make git; \ | ||
fi | ||
|
||
WORKDIR /tmp/grafana | ||
|
||
COPY go.* ./ | ||
COPY .bingo .bingo | ||
|
||
# Include vendored dependencies | ||
COPY pkg/util/xorm/go.* pkg/util/xorm/ | ||
COPY pkg/apiserver/go.* pkg/apiserver/ | ||
COPY pkg/apimachinery/go.* pkg/apimachinery/ | ||
COPY pkg/build/go.* pkg/build/ | ||
COPY pkg/build/wire/go.* pkg/build/wire/ | ||
COPY pkg/promlib/go.* pkg/promlib/ | ||
COPY pkg/storage/unified/resource/go.* pkg/storage/unified/resource/ | ||
COPY pkg/storage/unified/apistore/go.* pkg/storage/unified/apistore/ | ||
COPY pkg/semconv/go.* pkg/semconv/ | ||
COPY pkg/aggregator/go.* pkg/aggregator/ | ||
COPY apps/playlist/go.* apps/playlist/ | ||
|
||
RUN go mod download | ||
RUN if [[ "$BINGO" = "true" ]]; then \ | ||
go install github.com/bwplotka/bingo@latest && \ | ||
bingo get -v; \ | ||
fi | ||
|
||
COPY embed.go Makefile build.go package.json ./ | ||
COPY cue.mod cue.mod | ||
COPY kinds kinds | ||
COPY local local | ||
COPY packages/grafana-schema packages/grafana-schema | ||
COPY public/app/plugins public/app/plugins | ||
COPY public/api-merged.json public/api-merged.json | ||
COPY pkg pkg | ||
COPY scripts scripts | ||
COPY conf conf | ||
COPY .github .github | ||
|
||
ENV COMMIT_SHA=${COMMIT_SHA} | ||
ENV BUILD_BRANCH=${BUILD_BRANCH} | ||
|
||
RUN make build-go GO_BUILD_TAGS=${GO_BUILD_TAGS} WIRE_TAGS=${WIRE_TAGS} | ||
|
||
FROM ${BASE_IMAGE} as tgz-builder | ||
|
||
WORKDIR /tmp/grafana | ||
|
||
ARG GRAFANA_TGZ="grafana-latest.linux-x64-musl.tar.gz" | ||
|
||
COPY ${GRAFANA_TGZ} /tmp/grafana.tar.gz | ||
|
||
# add -v to make tar print every file it extracts | ||
RUN tar x -z -f /tmp/grafana.tar.gz --strip-components=1 | ||
|
||
# helpers for COPY --from | ||
FROM ${GO_SRC} as go-src | ||
FROM ${JS_SRC} as js-src | ||
|
||
# Final stage | ||
FROM ${BASE_IMAGE} | ||
|
||
LABEL maintainer="Grafana Labs <[email protected]>" | ||
|
||
ARG GF_UID="472" | ||
ARG GF_GID="0" | ||
|
||
ENV PATH="/usr/share/grafana/bin:$PATH" \ | ||
GF_PATHS_CONFIG="/etc/grafana/grafana.ini" \ | ||
GF_PATHS_DATA="/var/lib/grafana" \ | ||
GF_PATHS_HOME="/usr/share/grafana" \ | ||
GF_PATHS_LOGS="/var/log/grafana" \ | ||
GF_PATHS_PLUGINS="/var/lib/grafana/plugins" \ | ||
GF_PATHS_PROVISIONING="/etc/grafana/provisioning" | ||
|
||
WORKDIR $GF_PATHS_HOME | ||
|
||
# Install dependencies | ||
RUN if grep -i -q alpine /etc/issue; then \ | ||
apk add --no-cache ca-certificates bash curl tzdata musl-utils && \ | ||
apk info -vv | sort; \ | ||
elif grep -i -q ubuntu /etc/issue; then \ | ||
DEBIAN_FRONTEND=noninteractive && \ | ||
apt-get update && \ | ||
apt-get install -y ca-certificates curl tzdata musl && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/*; \ | ||
else \ | ||
echo 'ERROR: Unsupported base image' && /bin/false; \ | ||
fi | ||
|
||
# glibc support for alpine x86_64 only | ||
RUN if grep -i -q alpine /etc/issue && [ `arch` = "x86_64" ]; then \ | ||
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \ | ||
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r0/glibc-2.35-r0.apk \ | ||
-O /tmp/glibc-2.35-r0.apk && \ | ||
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r0/glibc-bin-2.35-r0.apk \ | ||
-O /tmp/glibc-bin-2.35-r0.apk && \ | ||
apk add --force-overwrite --no-cache /tmp/glibc-2.35-r0.apk /tmp/glibc-bin-2.35-r0.apk && \ | ||
rm -f /lib64/ld-linux-x86-64.so.2 && \ | ||
ln -s /usr/glibc-compat/lib64/ld-linux-x86-64.so.2 /lib64/ld-linux-x86-64.so.2 && \ | ||
rm -f /tmp/glibc-2.35-r0.apk && \ | ||
rm -f /tmp/glibc-bin-2.35-r0.apk && \ | ||
rm -f /lib/ld-linux-x86-64.so.2 && \ | ||
rm -f /etc/ld.so.cache; \ | ||
fi | ||
|
||
COPY --from=go-src /tmp/grafana/conf ./conf | ||
|
||
RUN if [ ! $(getent group "$GF_GID") ]; then \ | ||
if grep -i -q alpine /etc/issue; then \ | ||
addgroup -S -g $GF_GID grafana; \ | ||
else \ | ||
addgroup --system --gid $GF_GID grafana; \ | ||
fi; \ | ||
fi && \ | ||
GF_GID_NAME=$(getent group $GF_GID | cut -d':' -f1) && \ | ||
mkdir -p "$GF_PATHS_HOME/.aws" && \ | ||
if grep -i -q alpine /etc/issue; then \ | ||
adduser -S -u $GF_UID -G "$GF_GID_NAME" grafana; \ | ||
else \ | ||
adduser --system --uid $GF_UID --ingroup "$GF_GID_NAME" grafana; \ | ||
fi && \ | ||
mkdir -p "$GF_PATHS_PROVISIONING/datasources" \ | ||
"$GF_PATHS_PROVISIONING/dashboards" \ | ||
"$GF_PATHS_PROVISIONING/notifiers" \ | ||
"$GF_PATHS_PROVISIONING/plugins" \ | ||
"$GF_PATHS_PROVISIONING/access-control" \ | ||
"$GF_PATHS_PROVISIONING/alerting" \ | ||
"$GF_PATHS_LOGS" \ | ||
"$GF_PATHS_PLUGINS" \ | ||
"$GF_PATHS_DATA" && \ | ||
cp conf/sample.ini "$GF_PATHS_CONFIG" && \ | ||
cp conf/ldap.toml /etc/grafana/ldap.toml && \ | ||
chown -R "grafana:$GF_GID_NAME" "$GF_PATHS_DATA" "$GF_PATHS_HOME/.aws" "$GF_PATHS_LOGS" "$GF_PATHS_PLUGINS" "$GF_PATHS_PROVISIONING" && \ | ||
chmod -R 777 "$GF_PATHS_DATA" "$GF_PATHS_HOME/.aws" "$GF_PATHS_LOGS" "$GF_PATHS_PLUGINS" "$GF_PATHS_PROVISIONING" | ||
|
||
COPY --from=go-src /tmp/grafana/bin/grafana* /tmp/grafana/bin/*/grafana* ./bin/ | ||
COPY --from=js-src /tmp/grafana/public ./public | ||
COPY --from=js-src /tmp/grafana/LICENSE ./ | ||
|
||
EXPOSE 3000 | ||
|
||
ARG RUN_SH=./packaging/docker/run.sh | ||
|
||
COPY ${RUN_SH} /run.sh | ||
|
||
USER "$GF_UID" | ||
ENTRYPOINT [ "/run.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Source/Applications/openHistorian/openHistorian/Grafana/VERSION
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9.5.1 | ||
v11.4.0 |
4 changes: 2 additions & 2 deletions
4
Source/Applications/openHistorian/openHistorian/Grafana/bin/grafana-cli.exe
Git LFS file not shown
1 change: 0 additions & 1 deletion
1
Source/Applications/openHistorian/openHistorian/Grafana/bin/grafana-cli.exe.md5
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
Source/Applications/openHistorian/openHistorian/Grafana/bin/grafana-server.exe
Git LFS file not shown
1 change: 0 additions & 1 deletion
1
Source/Applications/openHistorian/openHistorian/Grafana/bin/grafana-server.exe.md5
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
Source/Applications/openHistorian/openHistorian/Grafana/bin/grafana.exe
Git LFS file not shown
1 change: 0 additions & 1 deletion
1
Source/Applications/openHistorian/openHistorian/Grafana/bin/grafana.exe.md5
This file was deleted.
Oops, something went wrong.
134 changes: 0 additions & 134 deletions
134
Source/Applications/openHistorian/openHistorian/Grafana/conf/.golangci.toml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.