@grafana/create-plugin 1.12.1 → 1.12.2-canary.383.c40bea1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "1.12.1",
3
+ "version": "1.12.2-canary.383.c40bea1.0",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "directory": "packages/create-plugin",
@@ -66,5 +66,5 @@
66
66
  "engines": {
67
67
  "node": ">=16"
68
68
  },
69
- "gitHead": "22175d33426b0efb3ad1eec57cc1962d6354a273"
69
+ "gitHead": "c40bea125db7e370af69c9bcf9e25d5dbb457976"
70
70
  }
@@ -1,7 +1,7 @@
1
1
  ARG grafana_version=latest
2
2
  ARG grafana_image=grafana-enterprise
3
3
 
4
- FROM grafana/${grafana_image}:${grafana_version}
4
+ FROM --platform=linux/amd64 grafana/${grafana_image}:${grafana_version}
5
5
 
6
6
  # Make it as simple as possible to access the grafana instance for development purposes
7
7
  # Do NOT enable these settings in a public facing / production grafana instance
@@ -5,6 +5,8 @@ services:
5
5
  container_name: '{{ pluginId }}'
6
6
  build:
7
7
  context: ./.config
8
+ platforms:
9
+ - "linux/amd64"
8
10
  args:
9
11
  grafana_image: ${GRAFANA_IMAGE:-{{~grafanaImage~}} }
10
12
  grafana_version: ${GRAFANA_VERSION:-{{~grafanaVersion~}} }