HiFiAdapterFilt icon indicating copy to clipboard operation
HiFiAdapterFilt copied to clipboard

I created a dockerfile for pbadapterfilt.sh

Open molikd opened this issue 3 years ago • 0 comments

Sheina,

I created this Dockerfile to be used with github actions to automagically (or push button) create a docker container.

Dave

Ps. One of the ways that I release containers on code is through a github actions to my docker repo, something like the follwoing would work:

name: HiFiAdapterFilt Manual Docker Workflow

on:
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
      name: Check out code

    - uses: mr-smithers-excellent/docker-build-push@v5
      name: Build & push Docker image
      with:
        image: sheinasim/HiFiAdapterFilt 
        tags: v1, latest
        registry: docker.io
        dockerfile: Dockerfile
        username: ${{ secrets.DOCKER_USERNAME }}
        password: ${{ secrets.DOCKER_PASSWORD }

molikd avatar Aug 02 '21 21:08 molikd