Skip to content

Commit 80ffb86

Browse files
committed
Capitalize AS in Dockerfile
1 parent 3510429 commit 80ffb86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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:jammy 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:jammy AS final
1010
COPY --from=build / /
1111
ENTRYPOINT ["/bin/bash", "-c"]
1212
CMD ["/bbs_r_start"]

0 commit comments

Comments
 (0)