Files
old-new-wiaas/frontend.dockerfile

18 lines
480 B
Plaintext
Raw Normal View History

2018-06-14 16:49:28 +02:00
FROM php:7.0-apache
ARG API_URL
ENV REACT_APP_API_URL=${API_URL}
2018-06-14 16:49:28 +02:00
ENV REACT_APP_TEST_URL ${API_URL}
ENV REACT_APP_PROD_URL ${APIP_URL}
ENV REACT_APP_DEV_URL ${API_URL}
2018-06-14 16:49:28 +02:00
RUN apt-get update && apt-get install -y git unzip gnupg
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
RUN apt-get install -y nodejs
COPY frontend /home/wiaas/frontend
WORKDIR /home/wiaas/frontend
2018-06-18 17:01:37 +02:00
RUN npm install && npm rebuild node-sass --force && npm run build
RUN cp -r build/* /var/www/html/