2018-03-31 02:47:17 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
WORKDIR .
|
|
|
|
|
2018-05-28 04:19:09 +02:00
|
|
|
RUN apt-get update && apt-get install -y curl gcc make git libpcre3-dev zlib1g-dev libbsd-dev
|
2018-03-31 02:47:17 +02:00
|
|
|
|
|
|
|
ADD ipscrub /ipscrub/
|
|
|
|
ADD Makefile /
|
|
|
|
|
|
|
|
EXPOSE 8081
|
|
|
|
|
|
|
|
RUN make nginx/objs/nginx
|
|
|
|
|
|
|
|
CMD make start && tail -f dest/logs/access.log
|