Skip to content

Commit cd5eccd

Browse files
committed
Fix docker tags in earthfile #738
1 parent a832b0f commit cd5eccd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Earthfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION --try --global-cache 0.8
1+
VERSION --try 0.8
22
PROJECT ontola/atomic-server
33
IMPORT ./browser AS browser
44
IMPORT github.com/earthly/lib/rust AS rust
@@ -88,7 +88,9 @@ docker-musl:
8888
VOLUME /atomic-storage
8989
ENTRYPOINT ["/atomic-server-bin"]
9090
RUN echo "Pushing tags: ${tags}"
91-
SAVE IMAGE --push ${tags}
91+
FOR tag IN ${tags}
92+
SAVE IMAGE --push ${tag}
93+
END
9294

9395
setup-playwright:
9496
FROM mcr.microsoft.com/playwright:v1.43.1-jammy

0 commit comments

Comments
 (0)