14 lines
274 B
Docker
14 lines
274 B
Docker
# Using alpine linux for small image
|
|
# - http://gliderlabs.viewdocs.io/docker-alpine/
|
|
FROM alpine:3.4
|
|
MAINTAINER Richard Morgan <r_morgan@sympatico.ca>
|
|
LABEL version=2.0
|
|
|
|
# install system packages
|
|
RUN apk --no-cache add \
|
|
nodejs \
|
|
&& npm install apidoc -g
|
|
|
|
WORKDIR /src
|
|
|