This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######################################################################3 | |
| FROM node:10 | |
| # This first part uses a node image to build the frontend dependencies and copies | |
| # the results into the next setep to produce the final deployed image | |
| ADD . /var/www/symfony | |
| WORKDIR /var/www/symfony | |
| RUN yarn install --no-progress | |
| RUN yarn build |