Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Remove cert and key
  • Loading branch information
tienidurodad committed Jan 28, 2019
1 parent 4a7f4b0 commit 8eadb6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoscaling-demo/nginx_base/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN printf "deb https://plus-pkgs.nginx.com/ubuntu `lsb_release -cs` nginx-plus\
# RUN ln -s -f /bin/true /usr/bin/chfn

# Install NGINX Plus
RUN apt-get update && apt-get install -y nginx-plus
RUN apt-get update && apt-get install -y nginx-plus && rm -fr /etc/ssl/nginx

# forward request logs to docker log collector
RUN ln -sf /dev/stdout /var/log/nginx/access.log
Expand Down
2 changes: 1 addition & 1 deletion nginx-swarm-demo/nginxplus/Dockerfile
Expand Up @@ -20,7 +20,7 @@ RUN wget -q -O /etc/apt/apt.conf.d/90nginx https://cs.nginx.com/static/files/90n
RUN printf "deb https://plus-pkgs.nginx.com/ubuntu `lsb_release -cs` nginx-plus\n" >/etc/apt/sources.list.d/nginx-plus.list

# Install NGINX Plus
RUN apt-get update && apt-get install -y nginx-plus
RUN apt-get update && apt-get install -y nginx-plus && rm -fr /etc/ssl/nginx

# forward request logs to Docker log collector
RUN ln -sf /dev/stdout /var/log/nginx/access.log
Expand Down

0 comments on commit 8eadb6b

Please sign in to comment.