Skip to content

Commit 8134f76

Browse files
committed
configuration ARGs should be on the top level on the Dockerfile
1 parent a742c56 commit 8134f76

File tree

20 files changed

+100
-20
lines changed

20 files changed

+100
-20
lines changed

codeserver/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
####################
27
# cpu-base #
38
####################
4-
ARG BASE_IMAGE
59
FROM ${BASE_IMAGE} AS cpu-base
610

711
WORKDIR /opt/app-root/bin

jupyter/datascience/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
######################################################
27
# mongocli-builder (build stage only, not published) #
38
######################################################
@@ -14,7 +19,6 @@ RUN cd ./mongodb-cli-mongocli-v${MONGOCLI_VERSION}/ && \
1419
####################
1520
# cpu-base #
1621
####################
17-
ARG BASE_IMAGE
1822
FROM ${BASE_IMAGE} AS cpu-base
1923

2024
WORKDIR /opt/app-root/bin

jupyter/minimal/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
####################
27
# cpu-base #
38
####################
4-
ARG BASE_IMAGE
59
FROM ${BASE_IMAGE} AS cpu-base
610

711
WORKDIR /opt/app-root/bin

jupyter/minimal/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
####################
27
# cuda-base #
38
####################
4-
ARG BASE_IMAGE
59
FROM ${BASE_IMAGE} AS cuda-base
610

711
WORKDIR /opt/app-root/bin

jupyter/minimal/ubi9-python-3.12/Dockerfile.rocm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
####################
27
# rocm-base #
38
####################
4-
ARG BASE_IMAGE
59
FROM ${BASE_IMAGE} AS rocm-base
610

711
WORKDIR /opt/app-root/bin

jupyter/pytorch+llmcompressor/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
######################################################
27
# mongocli-builder (build stage only, not published) #
38
######################################################
@@ -14,7 +19,6 @@ RUN cd ./mongodb-cli-mongocli-v${MONGOCLI_VERSION}/ && \
1419
####################
1520
# cuda-base #
1621
####################
17-
ARG BASE_IMAGE
1822
FROM ${BASE_IMAGE} AS cuda-base
1923

2024
WORKDIR /opt/app-root/bin

jupyter/pytorch/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
######################################################
27
# mongocli-builder (build stage only, not published) #
38
######################################################
@@ -14,7 +19,6 @@ RUN cd ./mongodb-cli-mongocli-v${MONGOCLI_VERSION}/ && \
1419
####################
1520
# cuda-base #
1621
####################
17-
ARG BASE_IMAGE
1822
FROM ${BASE_IMAGE} AS cuda-base
1923

2024
WORKDIR /opt/app-root/bin

jupyter/rocm/pytorch/ubi9-python-3.12/Dockerfile.rocm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
######################################################
27
# mongocli-builder (build stage only, not published) #
38
######################################################
@@ -14,7 +19,6 @@ RUN cd ./mongodb-cli-mongocli-v${MONGOCLI_VERSION}/ && \
1419
####################
1520
# rocm-base #
1621
####################
17-
ARG BASE_IMAGE
1822
FROM ${BASE_IMAGE} AS rocm-base
1923

2024
WORKDIR /opt/app-root/bin

jupyter/rocm/tensorflow/ubi9-python-3.12/Dockerfile.rocm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
######################################################
27
# mongocli-builder (build stage only, not published) #
38
######################################################
@@ -14,7 +19,6 @@ RUN cd ./mongodb-cli-mongocli-v${MONGOCLI_VERSION}/ && \
1419
####################
1520
# rocm-base #
1621
####################
17-
ARG BASE_IMAGE
1822
FROM ${BASE_IMAGE} AS rocm-base
1923

2024
WORKDIR /opt/app-root/bin

jupyter/tensorflow/ubi9-python-3.12/Dockerfile.cuda

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#########################
2+
# configuration args #
3+
#########################
4+
ARG BASE_IMAGE
5+
16
######################################################
27
# mongocli-builder (build stage only, not published) #
38
######################################################
@@ -14,7 +19,6 @@ RUN cd ./mongodb-cli-mongocli-v${MONGOCLI_VERSION}/ && \
1419
####################
1520
# cuda-base #
1621
####################
17-
ARG BASE_IMAGE
1822
FROM ${BASE_IMAGE} AS cuda-base
1923

2024
WORKDIR /opt/app-root/bin

0 commit comments

Comments
 (0)