summaryrefslogtreecommitdiff
path: root/contrib/nginx/Dockerfile
blob: f58dd3c2338c19d321596d38615a8d15abc827d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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/
RUN touch /var/www/public/index.php