From a0b65011f1281de419a2486279427a280474d8c2 Mon Sep 17 00:00:00 2001 From: Karthik Gooli Date: Mon, 13 Dec 2021 16:50:28 -0600 Subject: [PATCH] Add dockerfile for local development --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000000..b6b246efc865 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM ubuntu:18.04 +MAINTAINER Karthik Gooli karthik@foxpass.com +WORKDIR /opt/radius +RUN apt-get -y update +RUN apt-get -y install build-essential +RUN apt-get -y install libtalloc-dev libssl-dev openssl +COPY . /opt/radius +RUN ./configure +RUN make +RUN make install +ENTRYPOINT ["radiusd", "-X"]