diff --git a/CHANGELOG.md b/CHANGELOG.md index fc74b2b..7b28641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.2] - 2024-07-16 +### Fixed +- Fixed Dockerfile CMD path. Bitbucket pipe was looking for pipe.py in the wrong path + ## [0.0.1] - 2024-07-15 ### Added - Adding capability of finding application IDs in new relic and marking those apms with deployment marker. It uses Bitbucket commit hash as default for revisions. diff --git a/Dockerfile b/Dockerfile index c447808..bb84f39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -CMD ["python", "./pipe.py"] \ No newline at end of file +CMD ["python", "pipe.py"] \ No newline at end of file