Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Open
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
2 changes: 1 addition & 1 deletion osmosis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# no apt to install jq, so we copy it over
FROM wesleydeanflexion/busybox-jq:14 AS jq

FROM cephalopodequipment/osmosisd:9.0.0
FROM cephalopodequipment/osmosisd:20.1.2

USER root

Expand Down
5 changes: 3 additions & 2 deletions wasm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# no apt to install jq, so we copy it over
FROM cosmwasm/wasmd:0.27.0
# TODO: switch to cosmwasm/wasmd once it is published on dockerhub
FROM arkprotocol/wasmd:v0.53.0

USER root

RUN apt install -y jq
RUN apk add --no-cache jq

WORKDIR /opt

Expand Down
2 changes: 1 addition & 1 deletion wasm/scripts/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
set -o errexit -o nounset -o pipefail
command -v shellcheck >/dev/null && shellcheck "$0"

Expand Down