Skip to content

Updating docker build #13

Updating docker build

Updating docker build #13

Workflow file for this run

# Build dockerfile on change
name: Build Docker Container
on:
push:
branches:
- development
- master
paths:
- 'Dockerfile'
- '.github/workflows/docker.yml'
pull_request:
branches:
- development
- master
paths:
- 'env/renv.Dockerfile'
- '.github/workflows/build_renv.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and Publish
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: andersenlab/vcf-kit
username: ${{ secrets.KSE_DOCKER_USER }}
password: ${{ secrets.KSE_DOCKER_PASS }}
snapshot: true
dockerfile: Dockerfile
tags: "latest"
cache: true