# Copyright 2017 Intel Corporation
# Copyright 2019 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.

# Description:
#   Builds an image with the Sawtooth Intkey TP Rust package installed from
#   the Sawtooth Package Repository.
#
# Build:
#   $ cd sawtooth-sdk-rust/ci
#   $ docker build . -f sawtooth-intkey-tp-rust -t sawtooth-intkey-tp-rust
#
# Run:
#   $ docker run sawtooth-intkey-tp-rust

FROM ubuntu:bionic

LABEL "install-type"="repo"

RUN apt-get update \
&& apt-get install gnupg -y

RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/chime/stable 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 \
 && apt-get install -y -q \
    sawtooth-intkey-tp-rust \
 && apt-get clean \
 && rm -rf /var/lib/apt/lists/*

CMD ["intkey-tp-rust", "-vv"]
