]> Untitled Git - lemmy.git/commitdiff
Fix to dockerfile
authorDessalines <tyhou13@gmx.com>
Wed, 10 Apr 2019 04:45:10 +0000 (21:45 -0700)
committerDessalines <tyhou13@gmx.com>
Wed, 10 Apr 2019 04:45:10 +0000 (21:45 -0700)
Dockerfile

index b4478d196d121804af5d639912eacfcc195947b4..3e4468dd2d0642fae304b0d360f678be1a47ae74 100644 (file)
@@ -1,7 +1,9 @@
 FROM node:10-jessie as node
 #If encounter Invalid cross-device error -run on host 'echo N | sudo tee /sys/module/overlay/parameters/metacopy'
 COPY ui /app/ui
-RUN cd /app/ui && yarn && yarn build
+WORKDIR /app/ui
+RUN yarn
+RUN yarn build
 
 FROM rust:1.33 as rust
 COPY server /app/server