Skip to content

Commit

Permalink
Feat/add wasm support to dockerfile (#984) (#991)
Browse files Browse the repository at this point in the history
* Add wasm dependencies to Dockerfile

* Update CHANGELOG.md

(cherry picked from commit 0202e20)

Co-authored-by: Niccolo Raspa <nikever@users.noreply.github.com>
  • Loading branch information
mergify[bot] and Niccolo Raspa authored Feb 26, 2022
1 parent 2bba740 commit 2c990ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Minor improvements & Bug Fixes

* [#984](https://github.com/osmosis-labs/osmosis/pull/984) Add wasm support to Dockerfile

## [v7.0.0 - Carbon](https://github.com/osmosis-labs/osmosis/releases/tag/v7.0.0)

The Osmosis Carbon Release! The changes are primarily
Expand Down
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ FROM gcr.io/distroless/base-debian11

WORKDIR /

# wasm dependencies
COPY --from=build /go/pkg/mod/github.com/!cosm!wasm/wasmvm@v1.0.0-beta5/api/libwasmvm.so /lib/
COPY --from=build /lib/x86_64-linux-gnu/libgcc_s.so.1 /lib/

# osmosisd binary
COPY --from=build /osmosis/build/osmosisd /osmosisd

EXPOSE 26656
Expand Down

0 comments on commit 2c990ef

Please sign in to comment.