Skip to content

Commit a0e20d5

Browse files
authored
Build noble containers (#157)
1 parent a0a7204 commit a0e20d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_ghcr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
ubuntu: [jammy]
18+
ubuntu: [noble]
1919
platform: [linux/amd64]
2020
branch: [devel, release]
2121

@@ -144,7 +144,7 @@ jobs:
144144
strategy:
145145
fail-fast: false
146146
matrix:
147-
ubuntu: [jammy]
147+
ubuntu: [noble]
148148
steps:
149149
- name: Download digests devel
150150
uses: actions/download-artifact@v4

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM ubuntu:jammy AS build
1+
FROM ubuntu:noble AS build
22
ARG CYCLE=release
33
RUN useradd -ms /bin/bash biocbuild && apt update -qq && apt install sudo systemd -y && usermod -aG sudo biocbuild && echo "biocbuild ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
44
USER biocbuild
55
COPY . /home/biocbuild/bioconductor_salt
66
WORKDIR /home/biocbuild
77
RUN DEBIAN_FRONTEND="noninteractive" bash bioconductor_salt/startup_bbs_standalone_${CYCLE}.sh
88

9-
FROM ubuntu:jammy AS final
9+
FROM ubuntu:noble AS final
1010
COPY --from=build / /
1111
ENTRYPOINT ["/bin/bash", "-c"]
1212
CMD ["/bbs_r_start"]

0 commit comments

Comments
 (0)