Skip to content

Commit

Permalink
image updates
Browse files Browse the repository at this point in the history
  • Loading branch information
danbryan committed Jan 17, 2024
1 parent 116b124 commit 2cf33db
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
- dockerfile: ./osmosisd/Dockerfile
image: ghcr.io/defiantlabs/osmosisd
platforms: linux/amd64
tag: v20.1.0
tag: v22.0.0
- dockerfile: ./kujirad/Dockerfile
image: ghcr.io/defiantlabs/kujirad
platforms: linux/amd64
tag: v0.9.1
tag: v0.9.3-1
- dockerfile: ./odind/Dockerfile
image: ghcr.io/defiantlabs/odind
tag: v0.6.2
tag: v0.7.7
platforms: linux/amd64
permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions kujirad/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG TARGETPLATFORM

# Use muslc for static libs
ARG BUILD_TAGS="muslc"
ARG VERSION=v0.9.3
ARG VERSION=v0.9.3-1
ARG ORACLE_VERSION=v0.9.0
ARG LD_FLAGS=-linkmode=external \
-extldflags '-Wl,-z,muldefs -static'
Expand All @@ -19,7 +19,7 @@ WORKDIR /go/src/github.com/Team-Kujira
RUN git clone https://github.com/Team-Kujira/core.git
WORKDIR /go/src/github.com/Team-Kujira/core
RUN git fetch
RUN git checkout v0.9.3
RUN git checkout v0.9.3-1
WORKDIR /go/src/github.com/Team-Kujira/core

# Install CosmWasm.
Expand Down
6 changes: 3 additions & 3 deletions odind/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-buster AS build-env
FROM golang:1.20-buster AS build-env

ARG TARGETPLATFORM
ARG BUILD_TAGS=netgo
Expand Down Expand Up @@ -49,8 +49,8 @@ COPY --from=build-env /go/bin/yoda /bin
COPY --from=build-env /usr/bin/ldd /bin/ldd
COPY --from=build-env /usr/bin/curl /bin/curl
COPY --from=build-env /usr/bin/jq /bin/jq
COPY --from=build-env /go/pkg/mod/github.com/odin-protocol/[email protected].5/api/libgo_owasm.so /usr/lib/
COPY --from=build-env /go/pkg/mod/github.com/!cosm!wasm/wasmvm@v1.5.0/internal/api/libwasmvm.x86_64.so /usr/lib/
COPY --from=build-env /go/pkg/mod/github.com/odin-protocol/[email protected].*/api/libgo_owasm.so /usr/lib/
COPY --from=build-env /go/pkg/mod/github.com/!cosm!wasm/wasmvm@v1.*.0/internal/api/libwasmvm.x86_64.so /usr/lib/

RUN apt-get update && apt-get install -y ca-certificates

Expand Down
6 changes: 3 additions & 3 deletions osmosisd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine3.16 AS build-env
FROM golang:1.21-alpine3.17 AS build-env

# Customize to your build env

Expand Down Expand Up @@ -71,8 +71,8 @@ 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/libssl.so* /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

0 comments on commit 2cf33db

Please sign in to comment.