Skip to content

Commit

Permalink
fix(*): removing :latest on scratch of the Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasroussel committed Jul 23, 2024
1 parent afc3087 commit c5cbd65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY . .

RUN go build -o /build/hyve .

FROM scratch:latest
FROM scratch

COPY --from=builder /build/hyve /usr/bin/hyve

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM scratch:latest
FROM scratch

COPY ./hyve /bin/hyve

Expand Down

0 comments on commit c5cbd65

Please sign in to comment.