From a1e273f1713a868e855c42adc5a3f835a310084a Mon Sep 17 00:00:00 2001 From: samrg472 Date: Thu, 14 Nov 2019 15:11:21 -0800 Subject: [PATCH] Remove installing libsodium from the build process Sodiumoxide bundles a pinned version of libsodium making it no longer necessary to install the library manually. --- .travis.yml | 7 ------- Dockerfile | 2 -- 2 files changed, 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index f0df1d0..a493f81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,3 @@ -dist: xenial -addons: - apt: - packages: - - libsodium-dev language: rust rust: - stable -cache: - apt: true diff --git a/Dockerfile b/Dockerfile index f9b674f..95211c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,6 @@ WORKDIR /app RUN apt-get update && \ apt-get install -y \ - libsodium23 \ - libsodium-dev \ make \ clang