update version: sonarqube, gvm

This commit is contained in:
2025-05-07 17:53:32 +02:00
parent cf43143810
commit d8e27c9feb
5 changed files with 36 additions and 11 deletions

View File

@@ -5,11 +5,15 @@ LABEL io.hass.name="GVM Scanner"
LABEL io.hass.description="un a GVM (OpenVAS) scanner as a Home Assistant add-on."
LABEL io.hass.arch="amd64|aarch64"
LABEL io.hass.type="addon"
LABEL io.hass.version="0.0.1-beta"
LABEL io.hass.version="0.0.2-beta"
# Set timezone
ENV TZ=Europe/Rome
# Install jq for parsing config
RUN apt-get update && apt-get install -y jq \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Copy the entrypoint script
COPY run.sh /run.sh
RUN chmod +x /run.sh
@@ -17,5 +21,8 @@ RUN chmod +x /run.sh
# Expose default GVM Web UI port
EXPOSE 9392
# Optionally persist data
VOLUME [ "/data" ]
# Set entrypoint
CMD [ "/run.sh" ]