Skip to content
New issue

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

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

Already on GitHub? # to your account

fix: Include necessary deps for event-db-migrations build. | NPG-000 #727

Merged
merged 2 commits into from
Dec 10, 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
6 changes: 5 additions & 1 deletion containers/event-db-migrations/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ build:
FROM +deps

# Build refinery
RUN cargo install refinery_cli --version 0.8.7 --root .
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libssl-dev \
pkg-config
RUN cargo install --locked refinery_cli --version 0.8.7 --root .

SAVE ARTIFACT ./bin/refinery refinery
SAVE IMAGE --cache-hint
Expand Down
Loading