Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Legal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
OSDU
OSDU Data Platform
Security and Compliance
Legal
Merge requests
!70
Migrate legal service from AppEngine to CloudRUN (GONRG-989)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Migrate legal service from AppEngine to CloudRUN (GONRG-989)
migrate-legal-to-cloudrun
into
master
Overview
0
Commits
8
Pipelines
25
Changes
3
Merged
Mikhail Piatliou (EPAM)
requested to merge
migrate-legal-to-cloudrun
into
master
4 years ago
Overview
0
Commits
8
Pipelines
25
Changes
3
Expand
Update .gitlab-ci.yml with 'OSDU_GCP' variables for legal.
Include updated osdu-gcp-cloudrun.yml pipeline
Edited
4 years ago
by
Mikhail Piatliou (EPAM)
0
0
Merge request reports
Compare
master
version 6
24749a92
4 years ago
version 5
18e27a21
4 years ago
version 4
bbbd8417
4 years ago
version 3
db2baa95
4 years ago
version 2
c843592d
4 years ago
version 1
982fbc00
4 years ago
master (base)
and
latest version
latest version
f772b266
8 commits,
4 years ago
version 6
24749a92
7 commits,
4 years ago
version 5
18e27a21
6 commits,
4 years ago
version 4
bbbd8417
5 commits,
4 years ago
version 3
db2baa95
4 commits,
4 years ago
version 2
c843592d
3 commits,
4 years ago
version 1
982fbc00
2 commits,
4 years ago
3 files
+
46
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
provider/legal-gcp/cloudbuild/Dockerfile.cloudbuild
0 → 100644
+
12
−
0
Options
# Use the official AdoptOpenJDK for a base image.
# https://hub.docker.com/_/openjdk
FROM openjdk:8-slim
WORKDIR /app
ARG PROVIDER_NAME
ENV PROVIDER_NAME $PROVIDER_NAME
ARG PORT
ENV PORT $PORT
# Copy the jar to the production image from the builder stage.
COPY provider/legal-${PROVIDER_NAME}/target/legal-${PROVIDER_NAME}-*-spring-boot.jar legal-${PROVIDER_NAME}.jar
# Run the web service on container startup.
CMD java -Djava.security.egd=file:/dev/./urandom -Dserver.port=${PORT} -jar /app/legal-${PROVIDER_NAME}.jar
Loading