Skip to content

Commit

Permalink
Move to contrib folder
Browse files Browse the repository at this point in the history
  • Loading branch information
darless authored and schweikert committed Sep 7, 2023
1 parent 55ad838 commit e20939e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions contrib/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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"]

0 comments on commit e20939e

Please sign in to comment.