Skip to content

Commit

Permalink
fix ARGs in dockerfiles of integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
pxLi committed Sep 29, 2020
1 parent aaddb17 commit 5dbd9ff
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions jenkins/Dockerfile-blossom.integration.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@

###
#
# Arguments: CUDA_VER=10.1 or 10.2
#
# Arguments:
# CUDA_VER=10.1 or 10.2
# CUDF_VER=0.15 or 0.16-SNAPSHOT
# URM_URL=<maven repo url>
###
ARG CUDA_VER=10.1

FROM nvidia/cuda:${CUDA_VER}-runtime-centos7

ARG CUDA_VER=10.1
ARG CUDF_VER
ARG URM_URL

FROM nvidia/cuda:${CUDA_VER}-runtime-centos7

#Install java-8, maven, docker image
RUN yum update -y && \
yum install -y centos-release-scl && \
Expand Down
12 changes: 6 additions & 6 deletions jenkins/Dockerfile.integration.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@

###
#
# Arguments: CUDA_VER=10.1 or 10.2
#
# Arguments:
# CUDA_VER=10.1 or 10.2
# CUDF_VER=0.15 or 0.16-SNAPSHOT
# URM_URL=<maven repo url>
###
ARG CUDA_VER=10.1

FROM nvidia/cuda:${CUDA_VER}-runtime-centos7

ARG CUDA_VER=10.1
ARG CUDF_VER
ARG URM_URL

FROM nvidia/cuda:${CUDA_VER}-runtime-centos7

#Install java-8, maven, docker image
RUN yum update -y && \
yum install -y centos-release-scl && \
Expand Down

0 comments on commit 5dbd9ff

Please sign in to comment.