Skip to content

Commit

Permalink
osmosis update
Browse files Browse the repository at this point in the history
  • Loading branch information
danbryan committed Oct 23, 2023
1 parent 5c3fb9f commit e5cda84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- dockerfile: ./osmosisd/Dockerfile
image: ghcr.io/defiantlabs/osmosisd
platforms: linux/amd64
tag: v19.0.0
tag: v20.1.0
- dockerfile: ./kujirad/Dockerfile
image: ghcr.io/defiantlabs/kujirad
platforms: linux/amd64
Expand Down
5 changes: 3 additions & 2 deletions kujirad/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG LD_FLAGS=-linkmode=external \
-extldflags '-Wl,-z,muldefs -static'

# Install cli tools for building and final image
RUN apk add --update --no-cache make git bash gcc linux-headers eudev-dev ncurses-dev openssh curl jq
RUN apk update && apk add --no-cache make git bash gcc linux-headers eudev-dev ncurses-dev openssh curl jq
RUN apk add --no-cache musl-dev

# Build Chain Binary
Expand Down Expand Up @@ -86,8 +86,9 @@ COPY --from=build-env /usr/lib/libonig.so.5 /lib
COPY --from=build-env /usr/lib/libcurl.so.4 /lib
COPY --from=build-env /lib/libz.so.1 /lib
COPY --from=build-env /usr/lib/libnghttp2.so.14 /lib

COPY --from=build-env /lib/libssl.so.1.1 /lib
COPY --from=build-env /lib/libcrypto.so.1.1 /lib
COPY --from=build-env /lib/libcrypto.so.* /lib
COPY --from=build-env /usr/lib/libbrotlidec.so.1 /lib
COPY --from=build-env /usr/lib/libbrotlicommon.so.1 /lib

Expand Down
1 change: 1 addition & 0 deletions osmosisd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ COPY --from=build-env /usr/lib/libbrotlicommon.so.1 /lib
# Install trusted CA certificates for curl
COPY --from=build-env /etc/ssl/cert.pem /etc/ssl/cert.pem
COPY --from=build-env /etc/ssl/cert.pem /etc/ssl/ca-certificates.crt
COPY --from=build-env /etc/ssl/cert.pem /etc/ssl/certs/ca-certificates.crt

# Install cli tools from busybox
COPY --from=busybox /bin/ln /bin/ln
Expand Down

0 comments on commit e5cda84

Please sign in to comment.