You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 0.47, the interchainio/simapp image misses the ost fundamental tools to operate in this docker image, such as
sh
echo
file
ls
This makes it hard to debug #15670 and makes it impossible to use the docker image for CosmJS testing.
I guess the reason is the change from alpine:edge to gcr.io/distroless/base in #14793.
In order to restore the previous functionality, I suggest using alpine:latest (latest stable) for the runtime image instead.
Version
SDK 0.47
Docker: interchainio/simapp:v0.47.1 and ghcr.io/cosmos/simapp:latest
Steps to Reproduce
Open a shell
$ docker run --rm -it interchainio/simapp:v0.47.1 sh
docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "sh": executable file not found in $PATH: unknown.
Get simd file
$ docker run --rm interchainio/simapp:v0.47.1 file /usr/bin/simd
docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "file": executable file not found in $PATH: unknown.
The text was updated successfully, but these errors were encountered:
Summary of Bug
Since 0.47, the interchainio/simapp image misses the ost fundamental tools to operate in this docker image, such as
sh
echo
file
ls
This makes it hard to debug #15670 and makes it impossible to use the docker image for CosmJS testing.
I guess the reason is the change from
alpine:edge
togcr.io/distroless/base
in #14793.In order to restore the previous functionality, I suggest using
alpine:latest
(latest stable) for the runtime image instead.Version
SDK 0.47
Docker: interchainio/simapp:v0.47.1 and ghcr.io/cosmos/simapp:latest
Steps to Reproduce
Open a shell
Get simd file
The text was updated successfully, but these errors were encountered: