diff --git a/CHANGELOG.md b/CHANGELOG.md index 319e9a0..6beab2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`0.4.2...master`](https://github.com/localheinz/composer-normalize-action/compare/0.4.2...master). +### Changed + +* Started using `php:7.3-cli-alpine` instead of `php:7.3-alpine` as Docker base image ([#39](https://github.com/localheinz/composer-normalize-action/pull/39)), by [@localheinz](https://github.com/localheinz) + ## [`0.4.2`](https://github.com/localheinz/composer-normalize-action/releases/tag/0.4.2) For a full diff see [`0.4.1...0.4.2`](https://github.com/localheinz/composer-normalize-action/compare/0.4.1...0.4.2). diff --git a/Dockerfile b/Dockerfile index dc911d3..2255793 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.3-alpine +FROM php:7.3-cli-alpine LABEL "repository"="https://github.com/localheinz/composer-normalize-action" LABEL "homepage"="https://github.com/localheinz/composer-normalize"