-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update condaforge/mambaforge docker tag to v24.9.2 #5561
base: master
Are you sure you want to change the base?
Conversation
c5b50c2
to
ec2e645
Compare
ec2e645
to
f51feaa
Compare
98d566a
to
ca5e843
Compare
ca5e843
to
2d0451a
Compare
2d0451a
to
ae6de68
Compare
406748e
to
51e8ee5
Compare
51e8ee5
to
b24e877
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
Going to remove the Dockerfile and add a temporary arm64/amd64 selector from one of the PoCs FROM condaforge/mambaforge:24.9.2-0@sha256:e4edd160d0a10c6f577b127021d853b460e7e8c1bf1850c9aa4a52c4b8d9c8ee
ARG QUARTO_VERSION=1.3.433
ARG TARGETARCH
LABEL org.opencontainers.image.authors="Erik Fasterius"
LABEL org.opencontainers.image.description="Dockerfile for the quartonotebook nf-core module"
LABEL org.opencontainers.image.version="$QUARTO_VERSION"
LABEL org.opencontainers.image.documentation="https://github.com/nf-core/modules/blob/master/modules/nf-core/quartonotebook/README.md"
LABEL org.opencontainers.image.source="https://github.com/nf-core/modules"
LABEL org.opencontainers.image.vendor="nf-core"
LABEL org.opencontainers.image.license="https://github.com/nf-core/modules/blob/master/LICENSE"
ADD https://github.com/quarto-dev/quarto-cli#v${QUARTO_VERSION} /opt/quarto
ENV PATH="${PATH}:/opt/quarto/bin"
# Install packages using Mamba; also remove static libraries, python bytecode
# files and javascript source maps that are not required for execution
COPY environment.yml ./
RUN mamba env update --name base --file environment.yml \
&& mamba clean --all --force-pkgs-dirs --yes \
&& find /opt/conda -follow -type f -name '*.a' -delete \
&& find /opt/conda -follow -type f -name '*.pyc' -delete \
&& find /opt/conda -follow -type f -name '*.js.map' -delete
CMD /bin/bash This is very similar to the wave Dockerfile anyways. |
Gonna be blocked by conda-forge/quarto-feedstock#43 on the arm64 images |
a2d6601
to
ac55f03
Compare
WARNING
This PR contains the following updates:
24.1.2-0
->24.9.2-0
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Configuration
📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.