We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3510429 commit 80ffb86Copy full SHA for 80ffb86
Dockerfile
@@ -1,12 +1,12 @@
1
-FROM ubuntu:jammy as build
+FROM ubuntu:jammy AS build
2
ARG CYCLE=release
3
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
4
USER biocbuild
5
COPY . /home/biocbuild/bioconductor_salt
6
WORKDIR /home/biocbuild
7
RUN DEBIAN_FRONTEND="noninteractive" bash bioconductor_salt/startup_bbs_standalone_${CYCLE}.sh
8
9
-FROM ubuntu:jammy as final
+FROM ubuntu:jammy AS final
10
COPY --from=build / /
11
ENTRYPOINT ["/bin/bash", "-c"]
12
CMD ["/bbs_r_start"]
0 commit comments