diff --git a/Dockerfile b/Dockerfile index 624e7eb10..f2005a182 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,11 @@ RUN cd frontend && npm run build # Production stage FROM node:18-slim +# Add version labels +LABEL version="1.1.0" +LABEL description="ProxMox Pulse - A lightweight monitoring application for ProxMox" +LABEL maintainer="Richard Courtman" + # Create a non-root user RUN apt-get update && apt-get install -y --no-install-recommends dumb-init \ && apt-get clean \ diff --git a/frontend/src/utils/version.js b/frontend/src/utils/version.js index 74548892e..087f4d34e 100644 --- a/frontend/src/utils/version.js +++ b/frontend/src/utils/version.js @@ -1,4 +1,4 @@ // This file contains the version information for the application // It is automatically updated when a new release is created -export const VERSION = '1.0.15'; // Updated manually +export const VERSION = '1.1.0'; // Updated manually