Installing apache2 into a Ubuntu 16.04 image of Docker , I am getting the follow message
W: http://archive.ubuntu.com/ubuntu/pool/main/g/gdbm/libgdbm3_1.8.3-13.1_amd64.deb: Automatically disabled Acquire::http::Pipeline-Depth due to incorrect response from server/proxy. (man 5 apt.conf).
That is the Dockerfile:
FROM ubuntu:16.04
#RUN apt-get update
#https://github.com/phusion/baseimage-docker/issues/319
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils
RUN apt-get install -y apache2
When I open the image I see the /var/www/html folder, meaning, the apache was installed.
What message is that? Is it an error or can I consider apache as fully installed?