Skip to content

Commit

Permalink
Adding the files and workflows for the pdp server image
Browse files Browse the repository at this point in the history
  • Loading branch information
danakim committed Nov 16, 2023
1 parent b6ed067 commit a08a047
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,13 @@ jobs:
push: true
tags: |
ghcr.io/openconext/openconext-pdp/pdp-gui:${{ github.ref_name }}
- name: Build and push the pdp server image
uses: docker/build-push-action@v4
with:
context: pdp-server
file: pdp-server/docker/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/openconext/openconext-pdp/pdp-server:${{ github.ref_name }}
3 changes: 3 additions & 0 deletions pdp-server/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM eclipse-temurin:17-jdk-alpine
COPY target/*.jar app.jar
ENTRYPOINT ["java","-jar","/app.jar"]

0 comments on commit a08a047

Please sign in to comment.