diff --git a/CHANGELOG.md b/CHANGELOG.md index 2501782c5e..c69bf50266 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,11 +21,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed sorting on category page and product tile sizing - @andrzejewsky (#3817) - Redirect from simple product using url_path - @benjick (#3804) - Mount app in 'beforeResolve' if it's not dispatched in 'onReady' - @gibkigonzo (#3669) -- change translation from jp-JP to ja-JP - @gibkigonzo (#3824) +- Change translation from jp-JP to ja-JP - @gibkigonzo (#3824) ### Changed / Improved - Changed pre commit hook to use NODE_ENV production to check for debugger statements - @resubaka (#3686) - Improve the readability of 'getShippingDetails()' and 'updateDetails()' method of UserShippingDetails component - @adityasharma7 (#3770) +- Keep git after yarn install in dockerfile - @ddanier (#3826) ## [1.11.0-rc.2] - 2019.10.31 diff --git a/docker/vue-storefront/Dockerfile b/docker/vue-storefront/Dockerfile index 5fb728d9b0..cfdaa30cc3 100644 --- a/docker/vue-storefront/Dockerfile +++ b/docker/vue-storefront/Dockerfile @@ -7,7 +7,8 @@ WORKDIR /var/www COPY package.json ./ COPY yarn.lock ./ -RUN apk add --no-cache --virtual .build-deps ca-certificates wget git python make g++ \ +RUN apk add --no-cache --virtual .build-deps ca-certificates wget python make g++ \ + && apk add --no-cache git \ && yarn install --no-cache \ && apk del .build-deps