Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Commits
e0b11be2
Commit
e0b11be2
authored
1 year ago
by
Brittany Faciane
Browse files
Options
Downloads
Patches
Plain Diff
fix notification cmd
parent
9af960cb
No related branches found
Branches containing commit
Tags
end-of-sprint-28
Tags containing commit
2 merge requests
!1452
Merge 2.8.2 to main
,
!1396
changes for local builds
Checking pipeline status
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
services/notification/Dockerfile
+3
-2
3 additions, 2 deletions
services/notification/Dockerfile
services/workflow/Dockerfile
+1
-1
1 addition, 1 deletion
services/workflow/Dockerfile
with
4 additions
and
3 deletions
services/notification/Dockerfile
+
3
−
2
View file @
e0b11be2
# This is nrao:notification
FROM
python:3.10-slim-buster
as
base
ARG
WS_VERSION=unknown-version
ARG
DEPLOY_ENV
ARG
WS_VERSION=unknown-version
ENV
DEPLOY_ENV=${DEPLOY_ENV}
# Environment variables
ENV
PIP_NO_CACHE_DIR false
...
...
@@ -48,7 +49,7 @@ RUN poetry install
FROM
base
as
prod
ENV
PYTHONPATH "${PYTHONPATH}:/home/vlapipe/.local"
CMD
["
poetry
", "run", "
pserve
", "
--reload
", "
${DEPLOY_ENV}.ini
"]
CMD
poetry
run
pserve
--reload
${DEPLOY_ENV}.ini
FROM
base
as
dev
...
...
This diff is collapsed.
Click to expand it.
services/workflow/Dockerfile
+
1
−
1
View file @
e0b11be2
...
...
@@ -3,6 +3,7 @@ ARG LOCAL_OR_SERVER_PEX=local-pex
FROM
python:3.10-slim-buster
as
base
ARG
WS_VERSION=unknown-version
ARG
DEPLOY_ENV
ENV
DEPLOY_ENV=${DEPLOY_ENV}
# Environment variables
ENV
PIP_NO_CACHE_DIR false
...
...
@@ -64,7 +65,6 @@ RUN SETUPTOOLS_SCM_PRETEND_VERSION=${WS_VERSION} pip install --user -r test-requ
#RUN . ./install-pexes.sh
FROM
${LOCAL_OR_SERVER_PEX}
as
pex-base
ARG
DEPLOY_ENV
# HTCondor install
USER
root
RUN
apt update
&&
apt
install
-y
curl gnupg apt-transport-https
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment