Skip to content

Commit

Permalink
Bump versions to 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
almahmoud committed May 6, 2024
1 parent 82439df commit e257be6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_ghcr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
type: [builder, user]
ubuntu: ['jammy'] #[focal, jammy]
platform: [linux/amd64]
biocversion: ['3.18']
biocversion: ['3.19']

name: Build container images for GHCR
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion apt_setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
BIOC_VERSION=${1:-"3.18"}
BIOC_VERSION=${1:-"3.19"}
export UBUNTU_CODENAME=$(grep '^VERSION_CODENAME=' /etc/os-release | cut -d= -f2)
apt update -qq
apt install -y --no-install-recommends curl ca-certificates
Expand Down
2 changes: 1 addition & 1 deletion builder.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BASE_IMAGE=ghcr.io/bioconductor/r2u
ARG UBUNTU_TAG=jammy
FROM ${BASE_IMAGE}:${UBUNTU_TAG} AS base
ARG BIOC_VERSION=3.18
ARG BIOC_VERSION=3.19
RUN apt update -qq && apt install git-all build-essential binutils lintian debhelper dh-make devscripts curl vim dh-r -y && curl -O https://raw.githubusercontent.com/Bioconductor/bioconductor_docker/devel/bioc_scripts/install_bioc_sysdeps.sh && bash install_bioc_sysdeps.sh $BIOC_VERSION
2 changes: 1 addition & 1 deletion user.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG BASE_IMAGE=ubuntu
ARG UBUNTU_TAG=jammy
FROM ${BASE_IMAGE}:${UBUNTU_TAG} AS base
ARG BIOC_VERSION=3.18
ARG BIOC_VERSION=3.19
USER root
COPY apt_setup.sh /bioc_scripts/apt_setup.sh
RUN bash /bioc_scripts/apt_setup.sh $BIOC_VERSION

0 comments on commit e257be6

Please sign in to comment.