chessh/buildscripts/docker/build.sh

15 lines
339 B
Bash
Raw Normal View History

#!/bin/bash
2023-01-31 17:59:33 -05:00
env_file=../../.env.prod
export $(cat $env_file | xargs)
2023-01-31 17:59:33 -05:00
docker build ../.. -t chessh/server
cd front
docker build \
2023-01-31 16:01:35 -05:00
--build-arg REACT_APP_DISCORD_OAUTH=${REACT_APP_DISCORD_OAUTH} \
--build-arg REACT_APP_SSH_SERVER=${REACT_APP_SSH_SERVER} \
--build-arg REACT_APP_SSH_PORT=${REACT_APP_SSH_PORT} \
. -t chessh/frontend