Skip to content

Commit

Permalink
New PPA repo added
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitriy Creed <[email protected]>
  • Loading branch information
Cre-eD committed Apr 14, 2020
1 parent 6a6d98a commit c5fbd04
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docker/release/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
FROM ubuntu:18.04

RUN apt-get update
RUN apt-get update; \
apt install -y software-properties-common; \
add-apt-repository ppa:ubuntu-toolchain-r/test

#Install iroha
COPY iroha.deb /tmp/iroha.deb
RUN apt-get install -y /tmp/iroha.deb; \
rm -f /tmp/iroha.deb
RUN set -e; apt-get install -y /tmp/iroha.deb; \
rm -f /tmp/iroha.deb; \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/*

WORKDIR /opt/iroha_data

Expand Down

0 comments on commit c5fbd04

Please sign in to comment.