Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update subwasm dependency to 0.19 #60

Merged
merged 4 commits into from
Feb 10, 2023
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ WORKDIR /tmp
ENV DEBIAN_FRONTEND=noninteractive

# Tooling
ARG SUBWASM_VERSION=0.18.0
ARG SUBWASM_VERSION=0.19.0
ARG TERA_CLI_VERSION=0.2.2
ARG TOML_CLI_VERSION=0.2.2

COPY ./templates ${SRTOOL_TEMPLATES}/
RUN apt update && \
apt upgrade -y && \
apt install --no-install-recommends -y \
cmake pkg-config libssl-dev make protobuf-compiler \
git clang bsdmainutils ca-certificates curl && \
ntn-x2 marked this conversation as resolved.
Show resolved Hide resolved
cmake pkg-config libssl-dev make protobuf-compiler \
git clang bsdmainutils ca-certificates curl && \
curl -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 --output /usr/bin/jq && chmod a+x /usr/bin/jq && \
rm -rf /var/lib/apt/lists/* /tmp/* && apt clean

Expand Down