Skip to content

Commit

Permalink
build: Copy Dockerfile lines from master
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec committed Aug 19, 2020
1 parent f491bbc commit c367d93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ RUN git rev-parse HEAD

# controller image
RUN make dist/workflow-controller-linux-${IMAGE_ARCH}
RUN ["sh", "-c", "./dist/workflow-controller-linux-${IMAGE_ARCH} version | grep clean"]
RUN ./dist/workflow-controller-linux-${IMAGE_ARCH} version | grep clean

# executor image
RUN make dist/argoexec-linux-${IMAGE_ARCH}
RUN ["sh", "-c", "./dist/argoexec-linux-${IMAGE_ARCH} version | grep clean"]
RUN ./dist/argoexec-linux-${IMAGE_ARCH} version | grep clean

# cli image
RUN mkdir -p ui/dist
Expand All @@ -108,7 +108,7 @@ COPY --from=argo-ui ui/dist/app ui/dist/app
RUN touch ui/dist/node_modules.marker
RUN touch ui/dist/app/index.html
RUN make argo-server.crt argo-server.key dist/argo-linux-${IMAGE_ARCH}
RUN ["sh", "-c", "./dist/argo-linux-${IMAGE_ARCH} version | grep clean"]
RUN ./dist/argo-linux-${IMAGE_ARCH} version | grep clean

####################################################################################################
# argoexec
Expand Down

0 comments on commit c367d93

Please sign in to comment.