diff --git a/catalyst_voices/Earthfile b/catalyst_voices/Earthfile index 9b4c4b9fc13..309bfa50212 100644 --- a/catalyst_voices/Earthfile +++ b/catalyst_voices/Earthfile @@ -16,7 +16,7 @@ deps: WORKDIR /frontend - GIT CLONE https://github.com/flutter/flutter.git /usr/local/flutter + RUN git clone https://github.com/flutter/flutter.git /usr/local/flutter ENV PATH="/usr/local/flutter/bin:/usr/local/flutter/bin/cache/dart-sdk/bin:$HOME/.pub-cache/bin:${PATH}" RUN flutter channel stable RUN flutter upgrade @@ -87,4 +87,10 @@ package: COPY ./nginx.conf /etc/nginx/nginx.conf EXPOSE 80 - SAVE IMAGE catalyst-voices-app:$tag \ No newline at end of file + SAVE IMAGE voices-frontend:$tag + +publish: + FROM +package + ARG tag='latest' + + SAVE IMAGE voices-frontend:$tag \ No newline at end of file