update versions

This commit is contained in:
2025-05-07 18:16:02 +02:00
parent 75079b2a37
commit 23cbe69d3e
6 changed files with 34 additions and 29 deletions

View File

@@ -5,12 +5,12 @@ 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.2-beta"
LABEL io.hass.version="0.0.3-beta"
# Set timezone
ENV TZ=Europe/Rome
# Install jq for parsing config
# Install jq for config parsing
RUN apt-get update && apt-get install -y jq \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
@@ -18,11 +18,11 @@ RUN apt-get update && apt-get install -y jq \
COPY run.sh /run.sh
RUN chmod +x /run.sh
# Expose default GVM Web UI port
# Expose GVM Web UI port
EXPOSE 9392
# Optionally persist data
# Mountable volume
VOLUME [ "/data" ]
# Set entrypoint
CMD [ "/run.sh" ]
# Entrypoint
CMD [ "/run.sh" ]