Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(catalyst_voices): fixes Earthfile and adds publish target #391

Merged
merged 2 commits into from
Apr 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions catalyst_voices/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -87,4 +87,10 @@ package:
COPY ./nginx.conf /etc/nginx/nginx.conf
EXPOSE 80

SAVE IMAGE catalyst-voices-app:$tag
SAVE IMAGE voices-frontend:$tag

publish:
FROM +package
ARG tag='latest'

SAVE IMAGE voices-frontend:$tag
Loading