Add dig and update system package versions

Includes bump to alpine 3.17
This commit is contained in:
Ian Fijolek
2023-04-19 15:23:34 -07:00
parent ded4e129a1
commit c75302bdb8
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
ARG REPO=library
FROM ${REPO}/alpine:3.12
FROM ${REPO}/alpine:3.17
RUN mkdir /app
WORKDIR /app/
# Add common checking tools
RUN apk --no-cache add bash=~5.0 curl=~7.79 jq=~1.6
RUN apk --no-cache add bash=~5 curl=~8 jq=~1.6 bind-tools~=9
# Add minitor user for running as non-root
RUN addgroup -S minitor && adduser -S minitor -G minitor