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

support: add union docker image #287

Merged
merged 3 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions docker/chains/Dockerfile.union
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
ARG BASE_IMAGE
ARG VERSION
FROM ${BASE_IMAGE}:${VERSION} AS source

FROM alpine:3.16

LABEL org.opencontainers.image.source="https://github.com/cosmology-tech/starship"

COPY --from=source /nix/store/*/bin/uniond /usr/bin

USER root

# Setup injective deps
RUN apk add --no-cache libgcc libstdc++ ncurses-libs

# Set up dependencies
ENV PACKAGES curl make bash jq sed

# Install minimum necessary dependencies
RUN apk add --no-cache $PACKAGES

WORKDIR /opt
7 changes: 7 additions & 0 deletions docker/chains/versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,3 +267,10 @@ chains:
base: ghcr.io/strangelove-ventures/heighliner/neutron
tags:
- v1.0.4
- name: union
base: ghcr.io/unionlabs/uniond
file: Dockerfile.union
tags:
- v0.13.1
- v0.13.0
- v0.12.0
Loading