File tree Expand file tree Collapse file tree 2 files changed +21
-5
lines changed
Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 1- # Initialize the development environment with common settings
21all :
3- git config --local submodule.recurse true
4- git submodule update --init --recursive
5- yarn install
2+ docker build -t rockd_website:latest .
3+ docker run --rm -it -p 5500:5500 --name rockd_website --env-file .env rockd_website:latest
64
5+ VERSION := $(shell jq -r .version ./package.json)
76
7+ TAG := hub.opensciencegrid.org/macrostrat/rockd-website:$(VERSION )
8+
9+ debug :
10+ docker build -t rockd_website:latest .
11+ -docker kill rockd_website
12+ docker run --rm -t \
13+ -p 5500:5500 \
14+ -p 9229:9229 \
15+ -d \
16+ --name rockd_website \
17+ --env-file .env \
18+ rockd_website:latest \
19+ node --inspect=0.0.0.0:9229 /code/server.js
20+
21+ publish :
22+ docker build --platform=linux/amd64 -t $(TAG ) .
23+ docker push $(TAG )
824
Original file line number Diff line number Diff line change 11{
22 "name" : " @macrostrat/web" ,
33 "private" : true ,
4- "version" : " 2.2.2 " ,
4+ "version" : " 2.2.3 " ,
55 "description" : " Macrostrat map interface" ,
66 "type" : " module" ,
77 "scripts" : {
You can’t perform that action at this time.
0 commit comments