-
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.
Merge pull request #9 from EMSL-Computing/feature/manual-corems
base functionality for manual coreMS upload
- Loading branch information
Showing
21 changed files
with
382 additions
and
188 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: FREDA | ||
Title: An app for the processing and visualization of Fourier-transform mass spectrometry data. | ||
Version: 1.7 | ||
Version: 1.1.1 | ||
Authors@R: c(person("Lisa", "Bramer", "[email protected]", role = "aut", "cre"), | ||
person("Daniel", "Claborne", "[email protected]", role = c("aut"))) | ||
Description: A frontend application which exposes functionality of the ftmsRanalysis R package. See | ||
|
@@ -33,6 +33,7 @@ Imports: | |
scales, | ||
shiny, | ||
shinyBS, | ||
shinybusy, | ||
shinycssloaders, | ||
shinyjs, | ||
shinyWidgets, | ||
|
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
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
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,59 @@ | ||
BASE_DOCKER_FILE=Dockerfile-base | ||
DOCKER_FILE=Dockerfile | ||
BASE_VERSION=latest | ||
TOP_VERSION=latest | ||
TAG_LATEST=1 | ||
MAP_SHINYTEST=0 | ||
SECRET_PATH=.mysecret | ||
APP_REGISTRY="docker.artifactory.pnnl.gov/mscviz/freda" | ||
BASE_IMAGE_TAG="${APP_REGISTRY}/base:${BASE_VERSION}" | ||
IMAGE_TAG="${APP_REGISTRY}:${TOP_VERSION}" | ||
MAP_SHINYTEST=2 | ||
PROFILE=local | ||
|
||
.PHONY: build_base | ||
build_base: | ||
docker build . --secret id=access_tokens,src=${SECRET_PATH} \ | ||
-f ${BASE_DOCKER_FILE} \ | ||
-t ${BASE_IMAGE_TAG} \ | ||
2>&1 | tee build_base.log \ | ||
|
||
.PHONY: build_top | ||
build_top: | ||
docker build . \ | ||
--build-arg base_tag=${BASE_IMAGE_TAG} \ | ||
-f ${DOCKER_FILE} \ | ||
-t ${IMAGE_TAG} \ | ||
2>&1 | tee build_top.log \ | ||
|
||
.PHONY: build | ||
build: build_base build_top | ||
|
||
.PHONY: run | ||
run: | ||
docker compose up --build | ||
|
||
.PHONY: login | ||
login: | ||
docker login docker.artifactory.pnnl.gov | ||
|
||
.PHONY: push_base | ||
push_base: login | ||
docker push ${BASE_IMAGE_TAG} | ||
|
||
@if [ ${TAG_LATEST} = 1 ]; then\ | ||
docker tag ${BASE_IMAGE_TAG} "${APP_REGISTRY}/base:latest";\ | ||
docker push "${APP_REGISTRY}/base:latest";\ | ||
fi | ||
|
||
.PHONY: push_top | ||
push_top: login | ||
docker push ${IMAGE_TAG} | ||
|
||
@if [ ${TAG_LATEST} = 1 ]; then\ | ||
docker tag ${IMAGE_TAG} "${APP_REGISTRY}:latest";\ | ||
docker push "${APP_REGISTRY}:latest";\ | ||
fi | ||
|
||
.PHONY: push | ||
push: push_base push_top |
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
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
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
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
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
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
Oops, something went wrong.