Assets are only needed by nginx - not php
parent
2a134e6c0b
commit
41399fb9d9
@ -1,2 +1,13 @@
|
||||
FROM node:8-alpine as themes
|
||||
WORKDIR /app
|
||||
COPY resources/assets/ /app/resources/assets
|
||||
COPY .babelrc package.json webpack.config.js /app/
|
||||
RUN apk add --no-cache yarn
|
||||
RUN yarn install
|
||||
RUN yarn build
|
||||
|
||||
FROM nginx:alpine
|
||||
COPY contrib/nginx/nginx.conf /etc/nginx/nginx.conf
|
||||
COPY --from=themes /app/public/assets /var/www/public/assets/
|
||||
COPY public/.htaccess /var/www/public/
|
||||
COPY public/index.php /var/www/public/
|
||||
|
Loading…
Reference in New Issue