Open drtobbyas opened 1 year ago
Build: See dockerfile
Keypoint is yarn install --immutable
and yarn build
Run:
supervisord or node
This worked for me from repo root ;)
yarn install --immutable
yarn build
docker_tag='server'
docker buildx build --load --file="Dockerfile" . --tag standardnotes/${docker_tag}:latest
docker save standardnotes/${docker_tag}:latest > standardnotes_${docker_tag}.image.docker.tar
based on the output i think you could just do the last 3 and it would build inside the container though.
docker_tag='server'
docker buildx build --load --file="Dockerfile" . --tag standardnotes/${docker_tag}:latest
docker save standardnotes/${docker_tag}:latest > standardnotes_${docker_tag}.image.docker.tar
Please can you provide me a guide to run and build the application on my local environment?