diff options
Diffstat (limited to 'contrib/nginx/Dockerfile')
-rw-r--r-- | contrib/nginx/Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/nginx/Dockerfile b/contrib/nginx/Dockerfile index 3fe424aa..82b6b1e6 100644 --- a/contrib/nginx/Dockerfile +++ b/contrib/nginx/Dockerfile @@ -1,7 +1,6 @@ -FROM node:8-alpine as themes +FROM node:10-alpine as themes WORKDIR /app -RUN apk add --no-cache yarn -COPY .babelrc .browserslistrc package.json webpack.config.js /app/ +COPY .babelrc .browserslistrc package.json webpack.config.js yarn.lock /app/ RUN yarn install COPY resources/assets/ /app/resources/assets RUN yarn build |