diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b50f9e3f6..98435d2516 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,12 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed three problems you can run into when you have bundle products - @resubaka (#3692) - Reset nested menu after logout - @gibkigonzo (#3680) - Fixed handling checkbox custom option - @gibkigonzo (#2781) -- Added unit tests for `core/modules/mailer` - @krskibin (#3710) -- Get payment methods with billing address data - @rain2o (#2878) - Fixed typos in docs - @afozbek (#3709) +- Fixed VSF build fails for some people due to lack of dependencies in the container - @krskibin (#3699) ### Added - Added support for ES7 - @andrzejewsky (#3690) +- Added unit tests for `core/modules/mailer` - @krskibin (#3710) +- Get payment methods with billing address data - @rain2o (#2878) ## [1.11.0-rc.1] - 2019.10.03 diff --git a/docker/vue-storefront/Dockerfile b/docker/vue-storefront/Dockerfile index f0aa2896bd..5fb728d9b0 100644 --- a/docker/vue-storefront/Dockerfile +++ b/docker/vue-storefront/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /var/www COPY package.json ./ COPY yarn.lock ./ -RUN apk add --no-cache --virtual .build-deps ca-certificates wget git \ +RUN apk add --no-cache --virtual .build-deps ca-certificates wget git python make g++ \ && yarn install --no-cache \ && apk del .build-deps