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
2 changes: 2 additions & 0 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- '.github/**'
- '.vscode/**'
- 'deploy/**'
- 'cmd/kobs/Dockerfile'
- 'docs/**'
- '.dockerignore'
- '.editorconfig'
Expand All @@ -29,6 +30,7 @@ on:
paths-ignore:
- '.github/**'
- '.vscode/**'
- 'cmd/kobs/Dockerfile'
- 'deploy/**'
- 'docs/**'
- '.dockerignore'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.vscode/**'
- 'cmd/kobs/Dockerfile'
- 'deploy/**'
- 'docs/**'
- '.dockerignore'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan
- [#243](https://github.com/kobsio/kobs/pull/243): [resources] Fix reload of resources, when the user clicks on the search button.
- [#245](https://github.com/kobsio/kobs/pull/245): [klogs] Fix that the returned documents could be out of the selected time range.
- [#247](https://github.com/kobsio/kobs/pull/247): [azure] Fix documentation about the permission handling.
- [#274](https://github.com/kobsio/kobs/pull/274): Fix Docker build by setting `CGO_ENABLED=0`.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion cmd/kobs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ WORKDIR /kobs
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN make build
RUN export CGO_ENABLED=0 && make build

FROM alpine:3.14.2
RUN apk update && apk add --no-cache ca-certificates
Expand Down