github.com/kyleu/dbaudit@v0.0.2-0.20240321155047-ff2f2c940496/tools/release/Dockerfile.release (about) 1 # Content managed by Project Forge, see [projectforge.md] for details. 2 FROM golang:alpine 3 4 LABEL "org.opencontainers.image.authors"="Kyle U" 5 LABEL "org.opencontainers.image.source"="https://github.com/kyleu/dbaudit" 6 LABEL "org.opencontainers.image.vendor"="kyleu" 7 LABEL "org.opencontainers.image.title"="DB Audit" 8 LABEL "org.opencontainers.image.description"="Analyze your SQL Server database audits" 9 10 RUN apk add --update --no-cache ca-certificates libc6-compat 11 12 # main http port 13 EXPOSE 55500 14 15 WORKDIR / 16 17 ENTRYPOINT ["/dbaudit", "-a", "0.0.0.0"] 18 19 COPY dbaudit /