Files
caprover/dev-scripts/build_dev_image.sh
2023-07-20 11:48:11 -07:00

19 lines
314 B
Bash
Executable File

#!/bin/bash
# Exit early if any command fails
set -e
sudo echo OK
mkdir temp-frontend || echo OK
rm -rf temp-frontend/*
cp -r ../caprover-frontend/* ./temp-frontend
rm -rf ./temp-frontend/node_modules
rm -rf ./temp-frontend/.git
pwd
sudo docker build -f dockerfile-captain.dev -t caprover-dev-image:0.0.1 .