Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/build-image-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build docker image

on: [pull_request]

jobs:
pull_request:
runs-on: ubuntu-latest
env:
Docker_Repository: ${{ secrets.ACR_URL }}/${{ github.event.repository.name }}:${{ github.ref_name }}
steps:
- name: Check out Project Git repository
uses: actions/checkout@v4

- name: downcase repository
run: |
echo "Docker_Repository=${Docker_Repository,,}" >>${GITHUB_ENV}

- name: Build Docker Image
run: docker build .
14 changes: 14 additions & 0 deletions .github/workflows/jira-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Jira Integration
on:
pull_request:
types: [opened, edited]

permissions:
statuses: write
pull-requests: write

jobs:
jira-validation:
runs-on: ubuntu-latest
steps:
- uses: mapcolonies/javascript-github-actions/actions/jira-integration@jira-integration-v1.0.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#
# =================================================================

FROM python:3.8-slim-buster
FROM python:3.8-slim
LABEL maintainer="massimods@met.no,aheimsbakk@met.no,tommkralidis@gmail.com"

RUN apt-get update && apt-get install --yes \
Expand Down