Skip to content

Commit

Permalink
build: do not ignore Dockerfile
Browse files Browse the repository at this point in the history
Otherwise, we get a "dirty" build.
  • Loading branch information
vincentbernat committed Jul 22, 2022
1 parent 24e4776 commit e408bb8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
Dockerfile
console/frontend/node_modules/
bin/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ COPY go.mod ./
COPY go.sum ./
RUN go mod download
COPY . .
RUN make clean && make && ./bin/akvorado version && git status
RUN make clean && make && ./bin/akvorado version

# Do not use scratch, we use alpine to get an healthcheck
FROM alpine
Expand Down

0 comments on commit e408bb8

Please sign in to comment.