# Copyright 2018 Bitwise IO, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # docker build -f examples/xo_rust/Dockerfile -t sawtooth-xo-tp-rust-local . FROM ubuntu:bionic RUN apt-get update \ && apt-get install -y \ curl \ gcc \ libssl-dev \ libzmq3-dev \ pkg-config \ unzip # For Building Protobufs RUN curl -OLsS https://github.com/google/protobuf/releases/download/v3.5.1/protoc-3.5.1-linux-x86_64.zip \ && unzip protoc-3.5.1-linux-x86_64.zip -d protoc3 \ && rm protoc-3.5.1-linux-x86_64.zip RUN curl https://sh.rustup.rs -sSf > /usr/bin/rustup-init \ && chmod +x /usr/bin/rustup-init \ && rustup-init -y ENV PATH=$PATH:/project/sawtooth-sdk-rust/bin:/protoc3/bin:/root/.cargo/bin \ CARGO_INCREMENTAL=0 WORKDIR /project/sawtooth-sdk-rust/ CMD cd examples/xo_rust \ && echo "\033[0;32m--- Building xo-tp-rust ---\n\033[0m" \ && rm -rf ./bin/ \ && mkdir -p ./bin/ \ && cargo build --release \ && cp ./target/release/xo-tp-rust ./bin/xo-tp-rust