diff --git a/CHANGELOG.md b/CHANGELOG.md index 08ba07c..b80cf54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # [Unreleased] + +## [v1.0.1] - 2020-12-21 + +### Fixed +- Dockerfile used to copy just entrypoint.sh. + ## [v1.0.0] - 2020-12-18 ### Added - First definition of the action. +[unreleased]: https://github.com/marcodallasanta/ssh-scp-deploy/compare/main...development +[v1.0.1]: https://github.com/underscore69/ssh-scp-deploy/tree/v1.0.1 [v1.0.0]: https://github.com/underscore69/ssh-scp-deploy/tree/v1.0.0 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index a9f189b..1e1aeef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,6 @@ RUN apk update && \ COPY LICENSE README.md / -COPY entrypoint.sh /entrypoint.sh -COPY with_key.sh /with_key.sh -COPY with_pass.sh /with_pass.sh +COPY *.sh ./ -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"]