Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
Adding dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
amal-v committed Sep 30, 2019
1 parent 3cd0297 commit a3b1836
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y \
build-essential \
autoconf
COPY . /app
WORKDIR /app
RUN ./autogen.sh
RUN ./configure
RUN make
EXPOSE 8125
CMD ./statsd-proxy -f ./example.cfg

0 comments on commit a3b1836

Please sign in to comment.