8 lines
319 B
Bash
8 lines
319 B
Bash
|
#!/bin/bash
|
||
|
# Create teh react-builder image
|
||
|
docker build -f Dockerfile.create -t react-builder:latest .
|
||
|
# Run the react-builder image with local build/ dir mounted
|
||
|
docker run -v $(pwd)/build:/app/build react-builder:latest
|
||
|
# create the nginx container:
|
||
|
docker build --no-cache -f Dockerfile.nginx -t boxes-fe:latest .
|