forked from SoftwareEngineeringToolDemos/FSE-2011-PSPWizard
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
1db7ae2
commit 150e3d0
Showing
3 changed files
with
84 additions
and
1 deletion.
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,49 @@ | ||
name: Docker build and publish to GHCR | ||
|
||
on: | ||
push: | ||
branches: | ||
- docker_integration | ||
release: | ||
types: [published] # will use tag name regardless of naming | ||
|
||
jobs: | ||
build_and_publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout current Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Available platforms | ||
run: echo ${{ steps.buildx.outputs.platforms }} | ||
|
||
- name: Log in to the Container registry | ||
run: docker login --username Cambio-Project --password ${{secrets.PUBLISH_PACKAGES}} ghcr.io | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=ref,event=tag | ||
type=raw,value=latest | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
EXECUTION_ENV=ci | ||
GITHUB_PACKAGE_READ_TOKEN=${{ secrets.PUBLISH_PACKAGES }} |
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,26 @@ | ||
# Build stage | ||
FROM maven:3.9.6-amazoncorretto-21-debian AS build | ||
|
||
# create a new working directory | ||
WORKDIR /app | ||
|
||
# copy project files and folders to the current working directory (i.e. 'app' folder) | ||
COPY . . | ||
|
||
# installs the maven project from the base PSPWizard | ||
RUN mvn install | ||
|
||
# installs the restAPI Module from the PSPWizard | ||
RUN mvn install -f ./restAPI/pom.xml | ||
|
||
# Package stage | ||
FROM eclipse-temurin:21-jdk-alpine AS package | ||
|
||
# gets the *.jar file from the api application from the build stage | ||
COPY --from=build /app/restAPI/target/*.jar app.jar | ||
|
||
# exposes the port of the spring app e.g. 8080 | ||
EXPOSE 8080 | ||
|
||
# starts the application | ||
ENTRYPOINT ["java","-jar","app.jar"] |
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