Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,7 @@ project/project/
.vscode/

.codacy


#Ignore vscode AI rules
.github/copilot-instructions.md
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM alpine:3.21.3

RUN apk add --no-cache --update bash docker openjdk8
RUN adduser -D analysisCli

RUN adduser -D -G docker analysisCli

WORKDIR /workdir
COPY --chown=analysisCli:analysisCli cli/target/universal/stage /workdir
Expand Down