Packages

libdecaf NIF for ECDH (X25519, X448), EdDSA (Ed25519, Ed25519ctx, Ed25519ph, Ed448, Ed448ph), curve25519, curve448, spongerng

Current section

Files

Jump to
libdecaf priv Dockerfile
Raw

priv/Dockerfile

FROM ubuntu:xenial
ARG OTP_VERSION=local
ENV OTP_VERSION ${OTP_VERSION}
RUN apt-get update && \
apt-get -y install curl && \
curl -O https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && \
dpkg -i erlang-solutions_1.0_all.deb && \
apt-get update && \
apt-get -y install esl-erlang=1:${OTP_VERSION} git make clang-3.8
RUN mkdir /build
WORKDIR /build