FROM centos:7 MAINTAINER Tobias Germer
RUN yum update -y && yum install epel-release -y && yum install npm -y RUN npm install http-server -g && mkdir /data RUN echo "My little fancy http serverYou did it!" > /data/index.html
VOLUME /data WORKDIR /data
EXPOSE 8080
CMD http-server /data
Content type
Image
Digest
sha256:190dbfd84…
Size
154.9 MB
Last updated
about 11 years ago
docker pull mycreepy/http