Skip to content

Commit

Permalink
chore: update rust version and lock in cw-contract version
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey committed Jul 11, 2024
1 parent cdb40ae commit 15d2db9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile.contract
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build the contract using Rust
FROM rust:1.64 as builder
FROM rust:1.79 as builder

# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand All @@ -15,7 +15,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN rustup target add wasm32-unknown-unknown

# Clone the cw-contracts repository
RUN git clone https://github.com/InterWasm/cw-contracts
RUN git clone https://github.com/InterWasm/cw-contracts && \
cd cw-contracts && \
git checkout v0.11.0

# Navigate to the nameservice contract directory
WORKDIR /cw-contracts/contracts/nameservice
Expand Down

0 comments on commit 15d2db9

Please sign in to comment.