Skip to content

Commit

Permalink
Fixing the binary permissions in the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzmik committed Jul 2, 2024
1 parent b70bc00 commit a44c2f0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1

- Fix binary permissions

## 1.0.0

Initial release
- Initial release
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.18

LABEL org.opencontainers.image.description "Datadog query linter, for use mainly in CI"

COPY --chmod=700 datadog-query-linter /app/
COPY --chmod=755 datadog-query-linter /app/

WORKDIR /app

Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,14 @@ source ./.envrc

make # or make test, make run, etc
```

## Releasing a new version

Use the normal PR process to get your code merged, and then cut a tag:

```bash
git tag v1.0.0
git push origin v1.0.0
```

This will kick off a goreleaser build, and the docker image should show up in the repo shortly thereafter.

0 comments on commit a44c2f0

Please sign in to comment.