Skip to content

Update Dockerfile

Update Dockerfile #5

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Copy the compatible ParaAT version
run: cp -f /app/ParaAT.pl /app/ParaAT2.0/ParaAT.pl
- name: Build the Docker image
run: docker build . --file Dockerfile --tag dualhgt:$(date +%s)
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push the Docker image
run: |
docker push dualhgt:$(date +%s)
docker push dualhgt:${{ github.sha }}