-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix deployment scripts and nil key bug
- Loading branch information
1 parent
74aad54
commit 2a38eb2
Showing
4 changed files
with
24 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# [Choice] Debian OS version (use bullseye on local arm64/Apple Silicon): buster, bullseye | ||
ARG VARIANT="bullseye" | ||
FROM golang:1.20.4 | ||
FROM golang:1.21 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
|
@@ -14,10 +14,6 @@ RUN apt-get -y install --no-install-recommends vim | |
# WASM dependencies + Rustup | ||
RUN apt-get -y install --no-install-recommends binaryen | ||
|
||
# Cosmos dependencies | ||
# Sadly Ignite + Cosmos SDK v0.47.x is broken atm | ||
# RUN curl https://get.ignite.com/cli@nightly! | bash | ||
|
||
# Go language extension dependencies | ||
RUN go install github.com/cweill/gotests/[email protected] | ||
RUN go install github.com/fatih/[email protected] | ||
|
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
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