fix(sonarqube)

fix(gvm)
This commit is contained in:
2025-05-07 17:53:32 +02:00
parent cf43143810
commit 685e088a9f
4 changed files with 34 additions and 9 deletions

View File

@@ -10,6 +10,10 @@ LABEL io.hass.version="0.0.1-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" ]