Bare minimum Node.js + http-server images based on debian:jessie
5.1K
# boilerplate
FROM kilianciuffolo/node:__VERSION__
MAINTAINER [email protected]
# pkgs
RUN \
apt-get update && \
apt-get install --no-install-recommends -y -q \
libpng-dev \
&& \
apt-get clean autoclean && \
apt-get autoremove -y && \
rm -rf /var/lib/{apt,dpkg,cache,log}/
# static server
RUN npm install -g http-server && npm cache clean
ENTRYPOINT ["http-server"]
EXPOSE 8080
Content type
Image
Digest
sha256:9261cc130…
Size
169 MB
Last updated
over 10 years ago
docker pull kilianciuffolo/http-server