mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
nginx-extras
Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
parent
1c97fa61de
commit
7585d176e9
18
nginx-extras/Dockerfile
Normal file
18
nginx-extras/Dockerfile
Normal file
|
@ -0,0 +1,18 @@
|
|||
FROM debian:stretch
|
||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
lua-cjson \
|
||||
lua-iconv \
|
||||
nginx-extras \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# forward request and error logs to docker log collector
|
||||
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
|
||||
&& ln -sf /dev/stderr /var/log/nginx/error.log
|
||||
|
||||
EXPOSE 80 443
|
||||
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
Loading…
Reference in New Issue
Block a user