StaPH-B / docker-builds

:package: :whale: Dockerfiles and documentation on tools for public health bioinformatics
GNU General Public License v3.0
182 stars 116 forks source link

adding pycirclize version 1.6.0 #1000

Closed erinyoung closed 2 months ago

erinyoung commented 2 months ago

There's a new version of pycirclize!

According to the release notes, https://github.com/moshi4/pyCirclize/releases/tag/v1.6.0, there are some new features.

In this version of the Dockerfile, I copied the files from 1.5.0, updated the version ARG, fixed some tabs, and use wget for the test files instead of COPY.

The full diff

$ diff pycirclize/1.{5,6}.0/Dockerfile 
3c3
< ARG PYCIRCLIZE_VER="1.5.0"
---
> ARG PYCIRCLIZE_VER="1.6.0"
11c11
< LABEL website="https://github.com/moshi4/pyCirclize"
---
> LABEL website="d"
35c35,39
< COPY /tests/* /test/
---
> RUN apt-get update && apt-get install -y --no-install-recommends wget
> 
> RUN wget -q https://raw.githubusercontent.com/StaPH-B/docker-builds/master/pycirclize/1.5.0/tests/example1.py && \
>     wget -q https://raw.githubusercontent.com/StaPH-B/docker-builds/master/pycirclize/1.5.0/tests/example2.py && \
>     wget -q https://raw.githubusercontent.com/StaPH-B/docker-builds/master/pycirclize/1.5.0/tests/example3.py

Pull Request (PR) checklist:

Kincekara commented 2 months ago

Thank you for the update! Deploy link: https://github.com/StaPH-B/docker-builds/actions/runs/9782877182