Skip to content

Update Dockerfile

Update Dockerfile #4

Workflow file for this run

name: Docker Package
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Docker Login
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & push container
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/scai-bio/tsnepad/tsnepad:latest