You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
367 B
Docker
13 lines
367 B
Docker
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/
|
|
RUN touch /var/www/public/index.php
|