-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP * icq: host & controller chains * sdk v47 replace statements * workflow: build host & controller images * relative path to DockerFile * fix: use IBC MakeTestEncodingConfig * lint * simplify, regen types. remove legacy docs * add make build for demo app
- Loading branch information
1 parent
04e47eb
commit 0288bf5
Showing
79 changed files
with
11,544 additions
and
797 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# host | ||
# make local-image-icq | ||
# docker run --rm -it icq-host:local q | ||
|
||
FROM golang:1.21-alpine3.18 as builder | ||
|
||
RUN set -eux; apk add --no-cache git libusb-dev linux-headers gcc musl-dev make go; | ||
|
||
ENV GOPATH="" | ||
|
||
COPY go.mod . | ||
COPY go.sum . | ||
|
||
RUN go mod download | ||
|
||
COPY . . | ||
|
||
RUN make build | ||
|
||
FROM alpine:3.18 | ||
|
||
COPY --from=builder /go/build/* /bin/simd | ||
|
||
ENTRYPOINT ["/bin/simd"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# make local-image-icq-demo | ||
# docker run --rm -it icq-demo:local q interquery | ||
|
||
FROM golang:1.21-alpine3.18 as builder | ||
|
||
RUN set -eux; apk add --no-cache git libusb-dev linux-headers gcc musl-dev make go; | ||
|
||
ENV GOPATH="" | ||
|
||
COPY go.mod . | ||
COPY go.sum . | ||
COPY Makefile . | ||
|
||
RUN go mod download | ||
|
||
COPY ./testing/demo-simapp . | ||
|
||
RUN make build | ||
|
||
FROM alpine:3.18 | ||
|
||
COPY --from=builder /go/build/* /bin/icq-demo | ||
|
||
ENTRYPOINT ["/bin/icq-demo"] |
Oops, something went wrong.