mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-14 01:20:43 -05:00
ci: fix versionsapi cli container Dockerfile (#1856)
paths were not updated during refactoring
This commit is contained in:
parent
a31c3dbbcd
commit
0fac6a03cc
1 changed files with 2 additions and 2 deletions
4
.github/actions/versionsapi/Dockerfile
vendored
4
.github/actions/versionsapi/Dockerfile
vendored
|
|
@ -13,11 +13,11 @@ RUN go mod download
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
WORKDIR /workspace/internal/api/versionsapi/cli
|
WORKDIR /workspace/internal/api/versions/cli
|
||||||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o versionsapi .
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o versionsapi .
|
||||||
|
|
||||||
FROM scratch as release
|
FROM scratch as release
|
||||||
|
|
||||||
COPY --from=builder /workspace/internal/api/versionsapi/cli/versionsapi .
|
COPY --from=builder /workspace/internal/api/versions/cli/versionsapi .
|
||||||
|
|
||||||
CMD ["/notIntendedToBeExecuted"]
|
CMD ["/notIntendedToBeExecuted"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue