Skip to content

Commit

Permalink
docker GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayarri committed Jun 5, 2024
1 parent 0c4fd62 commit f26274f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
repository: bioexcel/biobb_workflows
path: ./
- name: Copy Dockerfile
run: |
cp common/docker/Dockerfile biobb_wf_amber_abc_setup/docker/Dockerfile
Expand All @@ -26,4 +31,10 @@ jobs:
cp common/docker/Dockerfile biobb_wf_protein_md_analysis/docker/Dockerfile
cp common/docker/Dockerfile biobb_wf_protein-complex_md_setup/docker/Dockerfile
cp common/docker/Dockerfile biobb_wf_structure_checking/docker/Dockerfile
cp common/docker/Dockerfile biobb_wf_virtual-screening_fpocket/docker/Dockerfile
cp common/docker/Dockerfile biobb_wf_virtual-screening_fpocket/docker/Dockerfile
- name: Commit and push changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add */docker/Dockerfile && git commit -m "Updated Dockerfile" && git push
2 changes: 1 addition & 1 deletion common/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ CMD ["\
source activate $REPOSITORY; \
jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser --allow-root --NotebookApp.token='' --NotebookApp.password=''; \
fi \
"]
"]

0 comments on commit f26274f

Please sign in to comment.