Skip to content

Commit

Permalink
👻 use build args for the tags on core.Dockerfile (#127)
Browse files Browse the repository at this point in the history
Signed-off-by: David Zager <dzager@redhat.com>
  • Loading branch information
djzager authored Jun 3, 2024
1 parent 887a5dd commit 1add5fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
ARG VERSION=latest

FROM golang:1.21 as builder
WORKDIR /windup-shim

Expand All @@ -8,9 +10,9 @@ COPY main.go /windup-shim

RUN go build -o windup-shim main.go

FROM quay.io/konveyor/analyzer-lsp:release-0.4
FROM quay.io/konveyor/analyzer-lsp:${VERSION} as analyzer-lsp

FROM quay.io/konveyor/java-external-provider
FROM quay.io/konveyor/java-external-provider:${VERSION}

WORKDIR /windup-shim

Expand Down

0 comments on commit 1add5fe

Please sign in to comment.