You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM ubuntu:20.04
|
|
|
|
# Base
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
automake \
|
|
m4
|
|
|
|
# Add source code
|
|
COPY ./ /app
|
|
|
|
# Compile
|
|
WORKDIR /app
|
|
RUN autoreconf --install
|
|
RUN ./configure && make && make install
|
|
ENTRYPOINT ["fping"] |