Skip to content

Commit

Permalink
Build docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
matsbov committed Aug 23, 2023
1 parent 4c75a9a commit 2906e82
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Build

on:
push:
tags:
- 'v*'

jobs:

Expand All @@ -27,5 +29,27 @@ jobs:
- name: Upload war
uses: actions/upload-artifact@v3
with:
name: Package
name: package
path: build/libs

- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: sbdi/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
10 changes: 10 additions & 0 deletions sbdi/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM tomcat:9.0-jdk11-temurin

RUN mkdir -p \
/data/dashboard/config \
/data/dashboard/csv \
/data/dashboard/zip

COPY sbdi/data/data.json /data/dashboard/data.json

COPY build/libs/dashboard-2.5.0-plain.war $CATALINA_HOME/webapps/ROOT.war

0 comments on commit 2906e82

Please sign in to comment.