Skip to content

Commit

Permalink
Fix symbol not found error
Browse files Browse the repository at this point in the history
Copy the build artifact from the docker image instead of using it as the base image
  • Loading branch information
mpkorstanje committed Apr 27, 2023
1 parent 8568e8c commit 63b677d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Fixed symbol not found error

## [1.1.0] - 2021-09-20
### Fixed
Expand Down
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM mattwynne/changelog:latest
RUN apk add curl
RUN apk add jq
FROM cucumber/changelog:0.10.0 AS build

FROM alpine:latest
RUN apk add --no-cache curl jq
COPY --from=build /usr/local/bin/changelog /usr/local/bin/changelog
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 63b677d

Please sign in to comment.