mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
14 lines
296 B
PowerShell
14 lines
296 B
PowerShell
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
|
|
echo "`n# Building Web"
|
|
|
|
echo "`nBuilding app"
|
|
echo "npm version $(npm --version)"
|
|
echo "gulp version $(gulp --version)"
|
|
npm install
|
|
gulp dist:selfHosted
|
|
|
|
echo "`nBuilding docker image"
|
|
docker --version
|
|
docker build -t bitwarden/web $dir\.
|