Fix gunicorn execution in Dockerfile #16
Workflow file for this run
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
name: Publish main image and server image to Docker Hub | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
docker-image-CI: | |
name: Docker Image CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v4 | |
- name: Publish main image (Dockerfile) to Registry | |
uses: elgohr/Publish-Docker-Github-Action@master | |
with: | |
name: clinicalgenomics/preclinvar | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
tags: "latest,${{ github.event.release.tag_name }}" |