summaryrefslogtreecommitdiff
path: root/contrib/nginx/Dockerfile
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2019-08-19 10:41:04 +0200
committerGitHub <noreply@github.com>2019-08-19 10:41:04 +0200
commit030e1ab38d1b147aa180e1a2887764ba329a8560 (patch)
tree4908e3bb20d704259c102260ec00472763fb53c2 /contrib/nginx/Dockerfile
parent53ec14b9c492a0607d834d17aab4b4597e24a214 (diff)
parent0b8cf704c87c1bcd4ebe851eacedba87270452a1 (diff)
Merge pull request #638 from marudor/fixCI
Fix CI
Diffstat (limited to 'contrib/nginx/Dockerfile')
-rw-r--r--contrib/nginx/Dockerfile5
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