July 2018
Intermediate to advanced
420 pages
8h 46m
English
With the Dockerfile in place, we just need to create a building process using the npm that we have available.
Open ./Client/package.json and add the following code:
"build:docker":"npm run lint:dev && npm run test && npm run e2e && npm rum build && npm rum docker:image", "docker:image":"./_scripts/create-docker-image.sh"
Let's explain what we did in the preceding code:
Before we go further, let's explain why we are using a bash ...
Read now
Unlock full access