-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
cshcwu
committed
Dec 12, 2023
1 parent
6623980
commit 38e4004
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Docker Build with Random Data | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build-and-run-random-data: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Build Docker Image with Random Data | ||
run: docker build --tag cohortingtool/webapp:random --build-arg random=true . | ||
|
||
- name: Run Docker Container | ||
run: docker run --name cogstackcohort-random -d -p 3000:3000 cohortingtool/webapp:random |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Docker Build with Real Data | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build-and-run-real-data: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Build Docker Image with Real Data | ||
run: docker build --tag cohortingtool/webapp . | ||
|
||
- name: Run Docker Container | ||
run: docker run --name cogstackcohort -d -p 3000:3000 cohortingtool/webapp | ||
|