Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ ENV VITE_BACKEND_NAME=${VITE_BACKEND_NAME}
ENV VITE_APP_BACKEND_URL=${VITE_APP_BACKEND_URL}
ENV VITE_APP_VERSION=${VITE_APP_VERSION}

LABEL org.opencontainers.image.source="https://github.com/projectsveltos/dashboard" \
org.opencontainers.image.url="https://projectsveltos.io" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.vendor="projectsveltos" \
org.opencontainers.image.title="dashboard" \
org.opencontainers.image.description="Sveltos Dashboard web UI." \
org.opencontainers.image.version="$VITE_APP_VERSION" \
org.opencontainers.image.revision="$VITE_APP_VERSION"

EXPOSE 5173

ENTRYPOINT ["/docker-entrypoint.sh"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ IMAGE_NAME ?= dashboard
ARCH ?= $(shell go env GOARCH)
OS ?= $(shell uname -s | tr A-Z a-z)
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
TAG ?= main
TAG ?= v1.13.0

# Directories.
TOOLS_DIR := hack/tools
Expand Down
2 changes: 1 addition & 1 deletion hack/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/projectsveltos/dashboard/hack/tools

go 1.26.4
go 1.26.5

require (
github.com/a8m/envsubst v1.4.3
Expand Down
4 changes: 2 additions & 2 deletions manifest/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ spec:
spec:
containers:
- name: dashboard
image: docker.io/projectsveltos/dashboard:main
image: docker.io/projectsveltos/dashboard:v1.13.0
ports:
- containerPort: 5173
env:
- name: VITE_APP_VERSION
value: main
value: v1.13.0
---
apiVersion: v1
kind: Service
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.91.3",
"@xyflow/react": "^12.4.2",
"axios": "^1.15.2",
"axios": "^1.18.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
Expand Down Expand Up @@ -64,12 +64,12 @@
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.0.0",
"postcss": "^8.4.31",
"postcss": "^8.5.23",
"prettier": "3.2.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "6.4.2",
"vite": "6.4.3",
"yargs": "^17.7.2"
},
"pnpm": {
Expand Down
Loading