Apache Docker container on Mac

I cannot make an Apache Container on Mac with Ubuntu. Below is my docker file.
I have tried different things. Anyone have a working docker file I can use and Ubuntu


FROM ubuntu:14.04.3
MAINTAINER Redpath

#redpath
#fix the warning debconf: unable to initialize frontend: Dialog
ENV DEBIAN_FRONTEND noninteractive

# redpath
# get basics here, ant, emacs and other stuff I would never use
#----------------------------------------
RUN apt-get -y -f -qq install software-properties-common
RUN apt-get -y -qq update
RUN apt-get install -y gdebi-core
RUN apt-get install -y ant
RUN apt-get -y -f -qq install apt-utils vim curl build-essential emacs
RUN apt-get -y -qq upgrade
RUN apt-get -y install apache2 --fix-missing

EXPOSE 8080

*Output Results

Sending build context to Docker daemon 26.6 MB
Step 1/12 : FROM ubuntu:14.04.3
—> 3876b81b5a81
Step 2/12 : MAINTAINER Redpath
—> Using cache
—> 8652a1a4acef
Step 3/12 : ENV DEBIAN_FRONTEND noninteractive
—> Using cache
—> fb9a0086a0e4
Step 4/12 : RUN apt-get -y -f -qq install software-properties-common
—> Using cache
—> 8cf6167b704e
Step 5/12 : RUN apt-get -y -qq update
—> Using cache
—> bf00a3f5ab4c
Step 6/12 : RUN apt-get install -y gdebi-core
—> Using cache
—> b357c325b0fc
Step 7/12 : RUN apt-get install -y ant
—> Using cache
—> 4aa6d5a538d6
Step 8/12 : RUN apt-get -y -f -qq install apt-utils vim curl build-essential emacs
—> Using cache
—> c28c6cd9eb15
Step 9/12 : RUN apt-get -y -qq upgrade
—> Running in 4696cb16a985
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2ubuntu4.4_amd64.deb 404 Not Found [IP: 91.189.88.152 80]

E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/k/klibc/klibc-utils_2.0.3-0ubuntu1.14.04.2_amd64.deb 404 Not Found [IP: 91.189.88.152 80]

E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/k/klibc/libklibc_2.0.3-0ubuntu1.14.04.2_amd64.deb 404 Not Found [IP: 91.189.88.152 80]

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
The command ‘/bin/sh -c apt-get -y -qq upgrade’ returned a non-zero code: 100