56 lines
2.2 KiB
Docker
56 lines
2.2 KiB
Docker
# BSD 2-Clause License
|
|
|
|
# Copyright (c) 2020, Supreeth Herle
|
|
# All rights reserved.
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright notice, this
|
|
# list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
# and/or other materials provided with the distribution.
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
FROM ubuntu:jammy
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Install updates and dependencies
|
|
RUN apt-get update && \
|
|
apt-get -y install wget git clang llvm gcc-multilib libbpf-dev \
|
|
net-tools iputils-ping git ifupdown iperf iptables
|
|
|
|
# Install Golang
|
|
RUN rm -rf /usr/local/go && wget https://go.dev/dl/go1.22.4.linux-amd64.tar.gz && \
|
|
tar -C /usr/local -xzf go1.22.4.linux-amd64.tar.gz
|
|
|
|
ENV PATH="/usr/local/go/bin:${PATH}"
|
|
|
|
# Install the Swag command line tool for Golang
|
|
RUN go install github.com/swaggo/swag/cmd/swag@v1.8.12
|
|
|
|
# Get eupf, compile and install
|
|
RUN export PATH=$(go env GOPATH)/bin:${PATH} && \
|
|
git clone https://github.com/edgecomllc/eupf.git && \
|
|
cd eupf && git checkout tags/v0.6.4 && \
|
|
go generate -v ./cmd/... && \
|
|
go build -v -o bin/eupf ./cmd/
|
|
|
|
# Set the working directory to eupf
|
|
WORKDIR eupf
|
|
|
|
CMD /mnt/eupf/eupf_init.sh
|