# Copyright 2018 Cargill Incorporated
#
# 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.
FROM ubuntu:bionic
RUN apt-get update \
&& apt-get install gnupg -y
RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/ci bionic universe" >> /etc/apt/sources.list \
&& (apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8AA7AF1F1091A5FD \
|| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 8AA7AF1F1091A5FD) \
&& apt-get update
RUN apt-get install -y -q \
git \
python3 \
python3-aiohttp \
python3-cbor \
python3-colorlog \
python3-cryptography-vectors \
python3-cryptography \
python3-lmdb \
python3-netifaces \
python3-pip \
python3-protobuf \
python3-pyformance \
python3-requests \
python3-secp256k1 \
python3-toml \
python3-yaml \
python3-zmq \
&& pip3 install \
pylint \
pycodestyle \
bandit \
coverage --upgrade
RUN apt-get install -y -q \
build-essential \
git \
libssl-dev \
libzmq3-dev \
openssl \
python3-grpcio-tools
ENV PATH=$PATH:/project/sawtooth-sdk-rust/bin
RUN apt-get install -y -q \
build-essential \
curl \
libssl-dev \
gcc \
libzmq3-dev \
openssl \
pkg-config \
python3-grpcio-tools \
unzip
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:/protoc3/bin:/project/sawtooth-sdk-rust:/root/.cargo/bin \
CARGO_INCREMENTAL=0
RUN rustup component add rustfmt-preview
WORKDIR /project/sawtooth-sdk-rust