Skip to content

Commit

Permalink
Merge pull request #15 from hspsh/issue-10/dockerfile
Browse files Browse the repository at this point in the history
Issue 10/dockerfile
  • Loading branch information
oneacik authored Apr 17, 2024
2 parents de5fff9 + 377363c commit 3205017
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Create and publish a Docker image
on: [push]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
12 changes: 12 additions & 0 deletions .github/workflows/generate-tree.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Generate Tech Tree
on: [push]
jobs:
generate-tech-tree:
runs-on: ubuntu-latest
container: ghcr.io/hspsh/tech-tree:issue-10-dockerfile
steps:
- java -jar /app/app.jar ./src/test/resources/full-example.yaml > tree.svg
- cat tree.svg
test-files:
script:
- find .
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM gradle:7-jdk17 AS build
COPY --chown=gradle:gradle . /home/gradle/src
WORKDIR /home/gradle/src
RUN gradle bootJar --no-daemon

FROM openjdk:17-jdk-bullseye
RUN apt-get update && apt-get -y install graphviz && apt-get clean
RUN mkdir /app
COPY --from=build /home/gradle/src/build/libs/*.jar /app/app.jar
ENTRYPOINT ["java","-jar","/app/app.jar"]
27 changes: 27 additions & 0 deletions src/test/resources/full-example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
nodes:
- title: Tech Tree
state: done
- title: Outline
state: broken
- title: Onboarding
state: todo
requires:
- Tech Tree
- Outline
- title: Proces Listy Zakupowej
state: progress
requires:
- Tech Tree
- Outline
- title: Kubernetes
state: broken
- title: FluxCD
state: broken
requires:
- Kubernetes
- title: Syncronium
state: broken
link: http://example.com
docs: https://github.com/hspsh/syncronium
requires:
- FluxCD

0 comments on commit 3205017

Please sign in to comment.